From 207cd4095f09a8a5b4f007ef68731af1ed983a1f Mon Sep 17 00:00:00 2001 From: Pietro Schirano Date: Tue, 28 May 2024 19:08:21 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e1b3dda..764f518 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,14 @@ This Python script demonstrates an AI-assisted task breakdown and execution work Thanks to a rewrite of the codebase using LiteLLM, it's now much easier to select the model you want. Simply -### Set environment variables for API keys for the services you are using +#### Set environment variables for API keys for the services you are using os.environ["OPENAI_API_KEY"] = "YOUR KEY" os.environ["ANTHROPIC_API_KEY"] = "YOUR KEY" os.environ["GEMINI_API_KEY"] = "YOUR KEY" -### Define the models to be used for each stage +#### Define the models to be used for each stage ORCHESTRATOR_MODEL = "gemini/gemini-1.5-flash-latest" SUB_AGENT_MODEL = "gemini/gemini-1.5-flash-latest" REFINER_MODEL = "gemini/gemini-1.5-flash-latest"