Added setup steps

This commit is contained in:
2025-11-04 21:20:36 -05:00
parent 2448c59f41
commit 512e568723

View File

@@ -5,4 +5,23 @@ An AI Agent to generate test CSV files for a Pandas application.
## .env file
Environment Variables:
OPEN_AI_APK_KEY - The API key acquired from OpenAI
OPEN_AI_MODEL - The AI Model selected based on cost vs performance
OPEN_AI_MODEL - The AI Model selected based on cost vs performance
## Setup (Mac instructions)
1) Create a Virtual Environment
```zsh
python3 -m venv ./venv
```
2) Activate the Virtual Environment
```zsh
source venv/bin/activate
```
3) Install requirements
```zsh
pip install -r requirements.txt
```
## Run the App