diff --git a/README.md b/README.md index 295c54a..76ff08f 100644 --- a/README.md +++ b/README.md @@ -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 \ No newline at end of file + 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 \ No newline at end of file