This is a Streamlit app for our Hackathon project.
-
Clone the Repository:
-
Setup Virtual Environment:
python3 -m venv venv
- Activate the Virtual Environment:
- On macOS and Linux:
source venv/bin/activate
- On Windows:
.\venv\Scripts\activate
- Install Required Packages:
pip install -r requirements.txt
IMPORTANT NOTE:
create a .env file and add these two line
OPENAI_API_KEY = your api key
OPENAI_API_BASE= base Url
- Run the App:
streamlit run test.py
- Deactivate the Virtual Environment (when done):
deactivate
Ensure you have Python installed and optionally, a virtual environment tool.