From a2cd025476aa2c1c9cf80491a90729c09e3d799b Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 18 Jun 2024 12:43:42 -0700 Subject: [PATCH] Updated dotenv.md with sample dotenv content generation cog script. --- website/docs/dotenv.md | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/website/docs/dotenv.md b/website/docs/dotenv.md index e45fc5783..f68fc0fb4 100644 --- a/website/docs/dotenv.md +++ b/website/docs/dotenv.md @@ -19,15 +19,9 @@ You can give it an explicit file to load with the `--env-file ` parame Here is an example `.env` file: -``` -OPENAI_API_KEY= -ANTHROPIC_API_KEY= -GROQ_API_KEY= -OPENROUTER_API_KEY= - -AZURE_API_KEY= -AZURE_API_VERSION=2023-05-15 -AZURE_API_BASE=https://example-endpoint.openai.azure.com - -OLLAMA_API_BASE=http://127.0.0.1:11434 +```dotenv +[[[cog +from aider.args import get_sample_dotenv +print(get_sample_dotenv()) +]]] ```