https://github.com/hoangsonww/estatewise-chapel-hill-chatbot
π A robust real estate chat application that streamlines user authentication, conversation management, and personalized property recommendations with a modern API, RAG, and responsive UI. Explore our repository to see how we integrate Express, MongoDB, and real-time chat features for an intuitive, scalable experience.
https://github.com/hoangsonww/estatewise-chapel-hill-chatbot
artificial-intelligence chatbot estate express expressjs machine-learning mongo mongodb nextjs pinecone rag react real-estate real-estate-website rest-api retrieval-augmented-generation shadcn-ui tailwindcss vector-database vercel
Last synced: 6 days ago
JSON representation
π A robust real estate chat application that streamlines user authentication, conversation management, and personalized property recommendations with a modern API, RAG, and responsive UI. Explore our repository to see how we integrate Express, MongoDB, and real-time chat features for an intuitive, scalable experience.
- Host: GitHub
- URL: https://github.com/hoangsonww/estatewise-chapel-hill-chatbot
- Owner: hoangsonww
- License: mit
- Created: 2025-04-16T01:19:56.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2025-04-16T06:47:58.000Z (2 months ago)
- Last Synced: 2025-04-16T08:11:19.707Z (2 months ago)
- Topics: artificial-intelligence, chatbot, estate, express, expressjs, machine-learning, mongo, mongodb, nextjs, pinecone, rag, react, real-estate, real-estate-website, rest-api, retrieval-augmented-generation, shadcn-ui, tailwindcss, vector-database, vercel
- Language: TypeScript
- Homepage: https://estatewise.vercel.app
- Size: 10.3 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EstateWise β Your Intelligent Estate Assistant π‘
**EstateWise** is a fullβstack, monorepo AI chatbot built for Chapel Hill, NC and the surrounding areas, featuring a sleek, responsive UI with smooth
animations and optional signβin to save your conversation history. Under the hood it leverages agentic AI, RetrievalβAugmented Generation with Pinecone
(kNN & cosine similarity), kβMeans clustering, Chain-of-Thought (CoT), and a MixtureβofβExperts ensemble to deliver fast, hyperβpersonalized property recommendations based on your preferences. π²> Built by Rikhil Fellner, Muskaan Joshi, [David Nguyen](https://github.com/hoangsonww), Vinir Rai, Rishabh Singh, and Rajbalan Yogarajan for the BUSI/COMP-488 course at UNC-Chapel Hill, Spring 2025.
## Table of Contents
- [Live App](#live-app)
- [Key Technologies](#key-technologies-used)
- [AI Techniques](#ai-techniques)
- [Features](#features)
- [Architecture](#architecture)
- [Backend](#backend)
- [Frontend](#frontend)
- [High-Level Architecture Flow Diagrams](#high-level-architecture-flow-diagrams)
- [Setup & Installation](#setup--installation)
- [Backend Setup](#backend-setup)
- [Frontend Setup](#frontend-setup)
- [Deployment](#deployment)
- [Usage](#usage)
- [User Interface](#user-interface)
- [API Endpoints](#api-endpoints)
- [Authentication](#authentication)
- [Conversations](#conversations)
- [Chat](#chat)
- [Swagger API Documentation](#swagger-api-documentation)
- [Project Structure](#project-structure)
- [AWS Deployment](#aws-deployment)
- [Dockerization](#dockerization)
- [Prometheus Monitoring & Visualizations](#prometheus-monitoring--visualizations)
- [OpenAPI Specification](#openapi-specification)
- [Challenges & Future Improvements](#challenges--future-improvements)
- [Contributing](#contributing)
- [License](#license)
- [Contact](#contact)
- [Acknowledgments](#acknowledgments)## Live App
Visit the live app on **Vercel** at **[https://estatewise.vercel.app/](https://estatewise.vercel.app/)** and explore the intelligent estate assistant!
The backend API is also available **[here](https://estatewise-backend.vercel.app/).**
_Feel free to use the app as a guest or sign up for an account to save your conversations!_
### Key Technologies Used





















For a more detailed technical overview, check out the [Technical Documentation](TECH_DOCS.md) file. It includes more information on how the app was built, how it works, how the data was processed, and more.
> Feel free to go to this [Colaboratory Notebook](https://colab.research.google.com/drive/1-Z3h0LUHl0v-e0RaZgwruL8q180Uk4Z-?usp=sharing) to directly view and run the code in this notebook & see the results in real time.
For a CLI version of the chatbot, as well as the initial EDA (Exploratory Data Analysis) of the properties data and interactive geospatial visualizations, check out the Jupyter notebooks in the root directory: [EDA-CLI-Chatbot.ipynb](EDA-CLI-Chatbot.ipynb).
### AI Techniques
**EstateWise** combines a modern API, realβtime chat, and a responsive UI with a powerful AI stack to deliver hyperβpersonalized property recommendations:
- **RetrievalβAugmented Generation (RAG):** Uses Pinecone for kNNβbased vector retrieval, then fuses retrieved data into generated responses.
- **kβMeans Clustering:** Automatically groups similar listings and finds closest matches to refine recommendations.
- All features are also normalized to a range of 0-1 for better clustering and kNN performance.
- **Decision AI Agent:** Decides whether to fetch RAG data (via `queryProperties`); if yes, it pulls in the Pinecone results, otherwise it skips straight to the MixtureβofβExperts pipeline.
- **Mixture of Experts (MoE):** Dynamically routes each query through a master model to select specialized subβmodels (Data Analyst, Lifestyle Concierge, Financial Advisor, Neighborhood Expert, Cluster Analyst) for maximal relevance.
- **Chain-of-Thought (CoT):** Each expert uses a CoT approach to break down complex queries into manageable steps, ensuring accurate and relevant responses.
- **Feedback Loop & Reinforcement Learning:** Users rate responses; thumbsβup/down adjust expert weights per conversation, and the system continuously learns to improve accuracy.
- **Prompt Engineering:** Each expert has a unique prompt template, ensuring tailored responses based on user input.
- All experts, agents, and merger have a detailed and ultra-specific prompt template to ensure the best possible responses.
- **kNN & Cosine Similarity:** Uses Pinecone for fast, realβtime property retrieval based on user queries.## Features
EstateWise is packed with both UI and AI features to enhance your home-finding experience:
- **Intelligent Property Recommendations**
Get tailored property suggestions powered by AI and RetrievalβAugmented Generation (RAG).- **Secure User Authentication**
Sign up, log in, and log out with JWTβbased security.- **Conversation History**
- **Authenticated users** can view, rename, and delete past chats.
- **Guest users** still have their conversation history saved locally in the browser.- **FullβText Search**
Quickly search your conversation history for keywords, topics, or specific properties.- **Rating System & Feedback Loop**
Rate each AI response (thumbs up/down) to adjust expert weights and continuously improve recommendations.- **MixtureβofβExperts (MoE) & Manual Expert View**
- The AI dynamically routes queries through specialized experts (Data Analyst, Lifestyle Concierge, Financial Advisor, Neighborhood Expert, Cluster Analyst).
- There is a master merger model that synthesizes the responses from all experts.
- Optionally switch to any single expertβs view to see their raw recommendation.- **Chain-of-Thought (CoT)**
Each expert uses a CoT approach to break down complex queries into manageable steps, ensuring accurate and relevant responses.- **Interactive Visualizations**
- Inβchat, the AI generates live Chart.js graphs from Pinecone data so you can instantly see trends and distributions.
- A dedicated Visualizations page offers aggregate charts and insights for all Chapel Hill properties.- **Clustering & Similarity Search**
- kβMeans clustering groups similar properties for more focused suggestions.
- kNN & Cosine Similarity (via Pinecone) finds the closest matches to your query in real time.- **Smooth Animations**
Engaging transitions and microβinteractions powered by Framer Motion.- **Interactive Chat Interface**
Enjoy a fully animated chat experience with Markdownβformatted responses, collapsible expert views, and inline charts.- **Responsive, Themeable UI**
- Optimized for desktop, tablet, and mobile.
- Dark and light modes with your preference saved locally.- **Guest Mode**
Use the app without creating an accountβhistory is stored only in your browser.- **Comprehensive Property Data**
- **Over 50,000** Chapel Hill area listings, complete with prices, beds, baths, living area, year built, and more.
- For security, this data isnβt included in the repoβplease plug in your own.
- Peek at our sample dataset here:
[Google Drive CSV (50k+ records)](https://drive.google.com/file/d/1vJCSlQgnQyVxoINosfWJWl6Jg1f0ltyo/view?usp=sharing)
- After cleaning, **30,772 properties** remain in the database, available for the chatbot to use.
- Explore `Initial-Data-Analysis.ipynb` in the repo root for an initial, quick Jupyterβpowered dive into the data.
- Explore `EDA-CLI-Chatbot.ipynb` in the repo root for a more detailed and comprehensive analysis of the data, as well as a CLI version of our chatbot.> Note: Please note that the deployed version of the app is subject to Vercel's infrastructure limitations, which may affect the performance and availability of the app. You are encouraged to run the app locally for the best experience.
## Architecture
**EstateWise** is built with a modern, full-stack architecture consisting of two major parts:
### Backend
- **Express.js & TypeScript:** A robust backend API that handles authentication, conversation management, and AI chat processing.
- **MongoDB:** Database for storing user data, conversation histories, and more.
- **JWT Authentication:** Secure user sessions using JSON Web Tokens.
- **Integration with AI & RAG:** Communicates with AI APIs and uses **Google Gemini API & Pinecone** for advanced property recommendation logic.
- **Swagger API Documentation:** Automatically generated API documentation for easy reference and testing.
- **Docker:** Containerization for easy deployment and scalability.
- **OpenAPI Specification:** An OpenAPI specification file (`openapi.yaml`) is included in the root directory. You can use Swagger UI or Postman to explore and test the API endpoints.
- **Prometheus Monitoring:** Collects and visualizes metrics for performance monitoring.
- **GitHub Actions:** CI/CD pipeline for automated testing and deployment.
- and more...### Frontend
- **Next.js & React:** A responsive, animation-rich web application.
- **Shadcn UI Components:** For a consistent design system across the app.
- **Framer Motion:** Provides smooth animations and transitions throughout the user experience.
- **Dark Mode/Light Mode:** Users can toggle themes with seamless background color transitions.
- **Chart.js:** For interactive data visualizations and graphs.
- **Tailwind CSS:** Utility-first CSS framework for rapid UI development.
- **Responsive Design:** Optimized for desktop, tablet, and mobile devices.
- **API Integration:** Communicates with the backend API for chat functionality, user authentication, and conversation management.
- and more...### High-Level Architecture Flow Diagrams
#### AI Architecture Flow Diagram
Here's a high-level architecture flow diagram that shows the AI processing and expert selection process:
![]()
#### Overall App Architecture Flow Diagram
Below is a high-level diagram that illustrates the flow of the application, including user interactions, frontend and backend components, and data storage:
```plaintext
ββββββββββββββββββββββββββββββββββ
β User Interaction β
β (Chat, Signup, Login, etc.) β
βββββββββββββββ¬βββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββββββββ
β Frontend (Next.js, React) β
β - Responsive UI, Animations β
β - API calls to backend β
β - User ratings for AI β
β responses β
βββββββββββββββ¬ββββββββββββββββββ
β
β (REST API Calls)
β
βΌ
βββββββββββββββββββββββββββββββ
β Backend (Express + TS) β
β - Auth (JWT, Signup/Login) β
β - Conversation & Chat APIs β
β - AI processing & RAG β
β - MongoDB & Pinecone β
β - Swagger API Docs β
β - Dockerized for deployment β
βββββββββββββββ¬ββββββββββββββββ
β
β
β
βββββββββββββ΄βββββββββββββ
β β
βΌ βΌ
βββββββββββββββββββ βββββββββββββββββββ
β MongoDB β β Pinecone Vector β
β (User Data, ββββββββΊβ Database β
β Convo History) β β (Knowledge Base)β
βββββββββββββββββββ βββββββββββββββββββ
β²
β
β (Utilizes stored data & docs)
β
βΌ
βββββββββββββββββββββββββββββββ
β Response Processing β
β - Uses Google Gemini API β
β - RAG (kNN) for retrieval β
β - k-Means clustering for β
β property recommendations β
β - Agentic AI for β
β orchestration β
β - Expert models (Data β
β Analyst, β
β Lifestyle Concierge, β
β Financial Advisor, β
β Neighborhood Expert, β
β Cluster Analyst) β
β - Expert selection process β
β (Mixture of Experts) β
β - Chain-of-Thought (CoT) β
β - Combine responses from β
β experts β
β - Feedback loop for rating β
β AI responses β
β - Reinforcement learning β
β for expert weights β
βββββββββββββββ¬ββββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββββββ
β Frontend Display β
β - Show chat response β
β - Update UI (conversation) β
β - User authentication flows β
β - Save conversation history β
β - Search and manage β
β conversations β
β - User ratings for AI β
β responses β
β - Visualizations of data β
βββββββββββββββββββββββββββββββ
```## Setup & Installation
### Backend Setup
1. **Clone the repository:**
```bash
git clone https://github.com/hoangsonww/EstateWise-Chapel-Hill-Chatbot.git
cd EstateWise-Chapel-Hill-Chatbot/backend
```2. **Install dependencies:**
```bash
npm install
```3. **Environment Variables:**
Create a `.env` file in the `server` directory with the following variables (adjust as needed):```env
PORT=
MONGO_URI=
JWT_SECRET=
GOOGLE_AI_API_KEY=
PINECONE_API_KEY=
PINECONE_INDEX=estatewise-index
```Important: Be sure that you created the Pinecone index with the name `estatewise-index` in your Pinecone account before proceeding. Then,
add data to the index using the `pinecone` CLI or API. For security purposes, our properties data is not publicly available in the repository. Please use your own data.4. **Upsert Properties Data to Pinecone:**
Use the `upsertProperties.ts` script to upsert your properties data into the Pinecone index. This script assumes that you place the 4 JSON files in the same directory as the script itself,
under the names `Zillow-March2025-dataset_part0.json`, `Zillow-March2025-dataset_part1.json`, `Zillow-March2025-dataset_part2.json`, and `Zillow-March2025-dataset_part3.json`.```bash
ts-node-dev --respawn --transpile-only src/scripts/upsertProperties.ts
```Alternatively, and preferably, you can use the following NPM command from the `backend` directory to quickly upsert the properties data:
```bash
npm run upsert
```Note that it may take quite long to upsert all the 30,772 properties data into the Pinecone index, so please be patient.
5. **Run the Backend in Development Mode:** After the properties data has been upserted into the Pinecone index, you can run the backend server in development mode:
```bash
npm run dev
```This command starts the backend server with live reloading.
### Frontend Setup
1. **Navigate to the client folder:**
```bash
cd ../frontend
```2. **Install dependencies:**
```bash
npm install
```3. **Run the Frontend Development Server:**
```bash
npm run dev
```The frontend should be running at [http://localhost:3000](http://localhost:3000).
4. **Change API URL:**
If your backend is running on a different port or domain, update the API URL in the frontend code (simply CTRL + F or CMD + F and search for `https://estatewise-backend.vercel.app` in all frontend files, then replace it with your backend URL - by default it is `http://localhost:3001`).5. **View and Interact with the App:**
Open your browser and navigate to [http://localhost:3000](http://localhost:3000) to view the app. You can interact with the chatbot, sign up, log in, and explore the features.> Note: As you develop, before committing, we recommend running the linter and formatter to ensure code quality with `npm run format`. This will format your code according to the project's ESLint and Prettier configurations.
## Deployment
- **Backend:** Deploy your backend on your chosen platform (Heroku, Vercel, AWS, etc.) and ensure environment variables are properly set.
- Currently, our backend & AI/ML APIs are deployed on Vercel & AWS at [https://estatewise-backend.vercel.app/](https://estatewise-backend.vercel.app/).
- **Frontend:** Deploy the React/Next.js frontend using services like Vercel or Netlify. Update any API endpoints if necessary.
- Currently, our frontend is deployed on Vercel at [https://estatewise.vercel.app/](https://estatewise.vercel.app/).
- **Database:** Ensure your MongoDB instance is accessible from your deployed backend. You can use services like MongoDB Atlas for cloud hosting.
- Currently, we are using MongoDB Atlas for the database. It is a cloud-hosted MongoDB service that provides a fully managed database solution.
- **Pinecone:** Ensure your Pinecone instance is accessible from your deployed backend. You can use the Pinecone CLI or API to manage your index and data.
- Currently, we are using Pinecone for vector storage and retrieval. It is a cloud-hosted vector database that provides a fully managed solution for storing and retrieving vectors.



## Usage
- **Landing Page:**
Learn about the appβs features and get started by signing in or continuing as a guest.
- **Authentication:**
Create an account, log in, and manage your user profile securely using JWT authentication.
- **Chat Interface:**
Interact with the AI assistant in real time. Authenticated users can save, rename, and delete conversations.
- **Theme Toggle:**
Switch between dark and light modes with smooth background transitions.
- **Search & Management:**
Easily search through your conversation history and manage your saved conversations from the sidebar.
- **Guest Mode:**
Use the app as a guest without creating an account. Conversations will still be saved locally in the browser.
- **Rating System:**
Rate the AI's responses to help improve its performance over time. If you are not satisfied with the AI's response, you can give a thumbs down rating, and the backend API will tweak the experts selection process (i.e. the weights of the experts) to improve the model's performance.
- **Expert Selection:**
The AI uses a mixture of experts to provide the best possible response based on user input. Users can also select a specific expert's response to view.
- **Chat History:**
View and manage your conversation history, including the ability to search for specific conversations (only available for authenticated users).
- **FullβText Search:**
Quickly search your conversation history for keywords, topics, or specific properties.
- **Visualizations:**
View interactive charts and graphs generated by the AI based on your queries. The visualizations page provides aggregate charts and insights for all Chapel Hill properties.> Note: The expert view feature is ONLY available for new messages. If you load a conversation from either the local storage or the database, the expert view feature will not be available, and only the combined response will be shown.
## User Interface
EstateWise features a modern, animated, and fully responsive user interface built with Next.js and Shadcn UI, with the help of Tailwind CSS for styling. The UI is designed to be intuitive and user-friendly, ensuring a seamless experience across devices.
### Landing Page
![]()
### Chat Interface - Guest
![]()
### Chat Interface - Authenticated
![]()
### Dark Mode: Chat Interface - Guest
![]()
### Dark Mode: Chat Interface - Authenticated
![]()
### Visualizations Page
![]()
### Login Page
![]()
### Register Page
![]()
### Reset Password Page
![]()
## API Endpoints
### Authentication
- **POST** `/api/auth/signup` β Create a new user.
- **POST** `/api/auth/login` β Log in a user and return a JWT.
- **GET** `/api/auth/verify-email` β Verify if an email exists.
- **POST** `/api/auth/reset-password` β Reset a user's password.### Conversations
- **POST** `/api/conversations` β Create a new conversation.
- **GET** `/api/conversations` β Retrieve all conversations for a user.
- **GET** `/api/conversations/:id` β Retrieve a conversation by its ID.
- **PUT** `/api/conversations/:id` β Rename a conversation.
- **DELETE** `/api/conversations/:id` β Delete a conversation.
- **GET** `/api/conversations/search/:query` β Search conversations by title or content.### Chat
- **POST** `/api/chat` β Send a chat message and receive an AI-generated response.
- **POST** `/api/chat/rate` β Rate the AI's response (thumbs up or down).More endpoints can be found in the Swagger API documentation. Endpoints may be added or modified as the project evolves, so this may not be an exhaustive list of all available endpoints.
### Swagger API Documentation
Access detailed API docs at the `/api-docs` endpoint on your deployed backend.
![]()
Live API documentation is available at: [https://estatewise-backend.vercel.app/api-docs](https://estatewise-backend.vercel.app/api-docs). You can visit it to explore and directly interact with the API endpoints, right in your web browser!
## Project Structure
```plaintext
EstateWise/
βββ aws/ # AWS deployment scripts
β βββ deploy.sh # Script to deploy the backend to AWS
β βββ ... (other AWS config files, Dockerfiles, etc.)
βββ frontend/ # Frontend Next.js application
β βββ public/ # Static assets (images, icons, etc.)
β βββ components/ # Reusable UI components
β βββ pages/ # Next.js pages (Chat, Login, Signup, etc.)
β βββ styles/ # CSS/SCSS files
β βββ package.json
β βββ tsconfig.json
β βββ ... (other config files, etc.)
βββ backend/ # Backend Express application
β βββ src/
β β βββ controllers/ # API controllers and endpoints
β β βββ models/ # Mongoose models
β β βββ routes/ # Express routes
β β βββ services/ # Business logic and integrations
β β βββ middleware/ # Authentication, error handling, etc.
β βββ package.json
β βββ tsconfig.json
β βββ ... (other config files, etc.)
βββ shell/ # Shell scripts for deployment and setup
βββ .env # Environment variables for development
βββ README.md # This file
βββ docker-compose.yml # Docker configuration for backend and frontend
βββ Dockerfile # Dockerfile for application
βββ openapi.yaml # OpenAPI specification for API documentation
βββ EDA-CLI-Chatbot.ipynb # Jupyter notebook for CLI chatbot
βββ Initial-Data-Analysis.ipynb # Jupyter notebook for initial data analysis
βββ ... (other config files, etc.)
```## AWS Deployment
To deploy the backend to AWS, you can use the provided `deploy.sh` script in the `aws/` directory.
This script automates the deployment process to AWS, including building the Docker image, pushing it to AWS ECR, and deploying it to AWS ECS.Our stack:
- **AWS ECS (with Fargate):** For running the backend server & AI/ML APIs.
- Backup: **Vercel**.
- **AWS ECR:** For storing Docker images.
- Backup: **GitHub Container Registry**.
- **AWS S3:** For static file storage.
- Backup: **Supabase Storage**.
- **MongoDB Atlas:** For database hosting.
- **Pinecone:** For vector storage and retrieval.
- **Vercel:** For hosting the frontend application.
- **Backup:** **Netlify**.Feel free to use the provided `deploy.sh` script to deploy the backend to AWS. You can also modify the script to suit your needs.
## Dockerization
To run the application **(OPTIONAL)** using Docker:
1. Ensure you have [Docker](https://www.docker.com/) installed.
2. In the project root directory, run:```bash
docker-compose up --build
```This command builds and starts both the backend and frontend services as defined in the `docker-compose.yml` file.
However, you don't need to run the app using Docker. You can run the backend and frontend separately as described in the **Setup & Installation** section.
## Prometheus Monitoring & Visualizations
Prometheus is used for monitoring the backend server. It collects metrics from the server and provides a web interface to visualize them.
Metrics collected & visualized include:
- CPU usage
- Memory usage
- Heap usage
- Load average
- Event loops
- Requests per second
- Status codes
- Response timesTo view live server metrics, go to `https://estatewise-backend.vercel.app/metrics` in your browser. This will show you the raw metrics collected by Prometheus. If you are running the app locally, you can go to `http://localhost:3001/metrics` in your browser.
To view live server data, go to `https://estatewise-backend.vercel.app/status` in your browser. If you are running the app locally, you can go to `http://localhost:3001/status` in your browser.
![]()
## OpenAPI Specification
An OpenAPI specification file (`openapi.yaml`) is included in the root directory. You can use Swagger UI or Postman to explore and test the API endpoints.
> Note: It may not be the latest and most updated version of the API specification, so please refer to the [Swagger API Documentation](#swagger-api-documentation) for the most up-to-date information.
## Challenges & Future Improvements
- **Data Quality:** Ensuring the quality and accuracy of the property data used for recommendations.
- **Performance Optimization:** Improving the speed and efficiency of the AI processing and response generation.
- **User Experience:** Enhancing the user interface and experience based on user feedback.
- **Vercel Infrastructure Limitations:** The current Vercel infrastructure has limitations on the number of requests and the amount of data that can be processed. We may need to consider using a different hosting solution for the backend in the future.
- Additionally, it imposes a limit of 60 seconds to process API requests, which may not be sufficient for some complex queries. Thus, it may cause timeouts for some requests.
- The user will be notified if the request times out, and the user will be prompted to try again later.
- **AWS Limitation:** Although AWS was used to address the Vercel infrastructure limitations, it has its own set of limitations, such as the number of requests and the amount of data that can be processed.
- Also, the billing for AWS services can be complex and may lead to unexpected costs if not monitored carefully.
- Thus, we are limiting the number of requests and the amount of data that can be processed by the backend API to avoid unexpected costs.
- **Gemini API Limitations:** The current Gemini API has limitations on the number of requests and the amount of data that can be processed. We may need to consider using a different AI solution in the future.
- Also, Google imposes rate limits on the number of requests that can be made to the Gemini API. If the rate limit is exceeded, the user will be notified and prompted to try again later.## Contributing
Contributions are welcome! Follow these steps:
1. **Fork the repository.**
2. **Create a feature branch:**
`git checkout -b feature/your-feature-name`
3. **Commit your changes:**
`git commit -m 'Add new feature'`
4. **Push to the branch:**
`git push origin feature/your-feature-name`
5. **Open a Pull Request** with a clear description of your changes.## License
This project is licensed under the [MIT License](LICENSE).
## Contact
For any questions or inquiries, please contact the [repository maintainer](https://github.com/hoangsonww) or open an issue in the repository.
## Team Members
## Acknowledgments
- Thanks to the BUSI/COMP-488 course at UNC-Chapel Hill for the inspiration and opportunity to build this project.
- Thanks to the professors and TAs for the comprehensive Chapel Hill real-estate datasets provided. Without them, we would not have been able to build this project.
- Special thanks to our instructor and TA for their guidance and support throughout the course.
- Huge thanks to the team members for their hard work and collaboration in building this project!---
[π Go to Technical Documentation](TECH_DOCS.md)
[β¬οΈ Back to Top](#table-of-contents)