Files
csv_agent/README.md
2025-11-05 18:44:56 -05:00

27 lines
489 B
Markdown

# csv_agent
An AI Agent to generate test CSV files for a Pandas application.
## .env file
Environment Variables:
- OPENAI_APK_KEY - The API key acquired from OpenAI
- OPENAI_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