From 0c53658321e0fb6fbb8803c760f86ed281d88240 Mon Sep 17 00:00:00 2001 From: Cheffromspace Date: Tue, 29 Oct 2024 20:04:26 -0500 Subject: [PATCH] Changed redirect operator to append operator in environment variable setup guide. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a06d51b..c4ab568 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ source venv/bin/activate # or `venv\Scripts\activate` on Windows pip install -r requirements.txt # Add API key to .env -echo "ANTHROPIC_API_KEY=your-key-here" > .env +echo "ANTHROPIC_API_KEY=your-key-here" >> .env # Run python run.py