This commit is contained in:
Paul Gauthier 2024-06-06 11:01:27 -07:00
parent 3cda6d7dd3
commit 0e5342fdb8
8 changed files with 189 additions and 177 deletions

30
website/docs/dotenv.md Normal file
View file

@ -0,0 +1,30 @@
---
parent: Configuration
nav_order: 900
---
# Storing LLM params in .env
You can use a `.env` file to store various keys and other settings for the
models you use with aider.
You currently can not set general aider options
in the `.env` file, only LLM environment variables.
Aider will look for a `.env` file in the
root of your git repo or in the current directory.
You can give it an explicit file to load with the `--env-file <filename>` parameter.
Here is an example `.env` file:
```
OPENAI_API_KEY=<key>
ANTHROPIC_API_KEY=<key>
GROQ_API_KEY=<key>
OPENROUTER_API_KEY=<key>
AZURE_API_KEY=<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
```