From 534c33525280630fa79372f786cb34c435a9aa4d Mon Sep 17 00:00:00 2001 From: Mac Chic Date: Wed, 26 Feb 2025 08:26:57 +0800 Subject: [PATCH] Update README.md Update `.env` to `.env.local` since the the `load_dotenv` in fastapi is pointing to `.env.local` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ed500f4..4f19286 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ To run the example locally you need to: 1. Sign up for accounts with the AI providers you want to use (e.g., OpenAI, Anthropic). 2. Obtain API keys for each provider. -3. Set the required environment variables as shown in the `.env.example` file, but in a new file called `.env`. +3. Set the required environment variables as shown in the `.env.example` file, but in a new file called `.env.local`. 4. `pnpm install` to install the required Node dependencies. 5. `virtualenv venv` to create a virtual environment. 6. `source venv/bin/activate` to activate the virtual environment.