Cure Me is an advanced RAG (Retrieve and Generate) project leveraging the LLM (Large Language Model) concept. This project provides a comprehensive mental and physical health assistant using state-of-the-art technologies to deliver accurate and personalized advice.
- Backend: Flask
- Frontend: React
- Database: TIBD Vector Database
- Concept: RAG (Retrieve and Generate) with LLM (Large Language Model)
git clone git@github.com:TIDBMEDICALHackathon/cure-me.gitcd cure-me/frontendnpm installnpm run dev:front-
Navigate to the Backend Directory:
cd ../backend -
Ensure Python 3.14 is Installed
Make sure you have Python 3.14 installed on your system.
-
Create a Virtual Environment
-
On Windows:
python -m venv venv
-
On macOS/Linux:
python3 -m venv venv
-
-
Activate the Virtual Environment
-
On Windows:
venv\Scripts\activate
-
On macOS/Linux:
source venv/bin/activate
-
-
Install Backend Dependencies
pip install -r requirements.txt
-
Run the Flask Application
flask run