A chatbot made to help you find real estate listings.
Its important to note that although our min and max price filters are implemented, the Bedrooms and Bathrooms are not currently.
.
├── app.py
├── client
│ ├── build
│ ├── node_modules
│ ├── package.json
│ ├── package-lock.json
│ ├── public
│ ├── README.md
│ └── src
├── llm
│ └── README.md
├── README.md
└── requirements.txt
11 directories, 8 files
Clone repo
git clone [email protected]:JustinMeimar/hack-gpt-dev.git
Navigate into repo
cd hack-gpt-dev
Make a virtual environment
python -m venv env
Install dependencies
pip install -r requirements.txt
python3 app.py
Install the frontend
npm install
Build the frontend
cd /app/client
npm build
Run the server locally
cd app && python manage.py runserver
Create the file app/api/llm/.env
and add the OpenAI Credentials in the form
OPENAI_API_KEY = <"OPEN_AI_API_KEY">
OPENAI_ORG_ID = "<"OPENAI_ORG_ID">
The React frontend is served by the file app/client/build/index.html
, so to make changes to the frontend run npm run build
from app/client