From 512e568723a5bb0b4de23b601c27287603cc18cc Mon Sep 17 00:00:00 2001 From: Nicholas Kalar Date: Tue, 4 Nov 2025 21:20:36 -0500 Subject: [PATCH] Added setup steps --- README.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) 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