Added setup steps
This commit is contained in:
21
README.md
21
README.md
@@ -5,4 +5,23 @@ An AI Agent to generate test CSV files for a Pandas application.
|
|||||||
## .env file
|
## .env file
|
||||||
Environment Variables:
|
Environment Variables:
|
||||||
OPEN_AI_APK_KEY - The API key acquired from OpenAI
|
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
|
||||||
Reference in New Issue
Block a user