python -m venv venv- On Windows:
.\venv\Scripts\activate
- On macOS and Linux:
source venv/bin/activate
pip install -r requirements.txtCreate a .env file in the root directory of your project and add the following variables:
MODEL=your_model_name
GROQ_API_KEY=your_groq_api_key
GROQ_MODEL=your_groq_model
python groq/agent.pypython groq/ws.pystreamlit run app/app.py