This chatbot offers emotional support but is not a substitute for professional medical or mental health advice. Please consult a qualified expert for any medical concerns.
MentalHealth_bot
|
|-data
|---save_load_data
|---dataset.csv #after running flow.py
|
|-rag
|---populate_db.py
|---retrieve.py
|
|-app.py
|-flow.py
|-.env
|-.gitignore
|-README.md
|-requirements.txt- Setup the requirements using requirements.txt
python venv -m BIAenv
BIAenv\Scripts\activate #for windows
pip install -r requirements.txt- Run flow.py to save dataset from huggingface as .csv
python flow.py- Run app.py to launch the streamlit app
streamlit run app.pySetup a .env file with your GEMINI_API
#.env
GEMINI_API = "your api key here"