mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 12:24:59 +00:00
Added all litellm API_KEYS to docs
This commit is contained in:
parent
5f14c3068c
commit
18c272b5d3
2 changed files with 64 additions and 1 deletions
|
@ -37,3 +37,65 @@ Aider uses the LiteLLM package to connect to LLM providers.
|
||||||
The [LiteLLM provider docs](https://docs.litellm.ai/docs/providers)
|
The [LiteLLM provider docs](https://docs.litellm.ai/docs/providers)
|
||||||
contain more detail on all the supported providers,
|
contain more detail on all the supported providers,
|
||||||
their models and any required environment variables.
|
their models and any required environment variables.
|
||||||
|
|
||||||
|
|
||||||
|
## Other API key variables
|
||||||
|
|
||||||
|
Here are the API key environment variables that are supported
|
||||||
|
by litellm. See their docs for more info.
|
||||||
|
|
||||||
|
<!--[[[cog
|
||||||
|
from subprocess import run
|
||||||
|
lines = run(
|
||||||
|
"egrep -ho '[A-Z_]+_API_KEY' ../litellm/litellm/*py | sort -u",
|
||||||
|
shell=True,
|
||||||
|
capture_output=True,
|
||||||
|
text=True,
|
||||||
|
).stdout
|
||||||
|
lines = ['- ' + line for line in lines.splitlines(keepends=True)]
|
||||||
|
cog.out(''.join(lines))
|
||||||
|
]]]-->
|
||||||
|
- ALEPHALPHA_API_KEY
|
||||||
|
- ALEPH_ALPHA_API_KEY
|
||||||
|
- ANTHROPIC_API_KEY
|
||||||
|
- ANYSCALE_API_KEY
|
||||||
|
- AZURE_AI_API_KEY
|
||||||
|
- AZURE_API_KEY
|
||||||
|
- AZURE_OPENAI_API_KEY
|
||||||
|
- BASETEN_API_KEY
|
||||||
|
- CLARIFAI_API_KEY
|
||||||
|
- CLOUDFLARE_API_KEY
|
||||||
|
- CODESTRAL_API_KEY
|
||||||
|
- COHERE_API_KEY
|
||||||
|
- CO_API_KEY
|
||||||
|
- DATABRICKS_API_KEY
|
||||||
|
- DEEPINFRA_API_KEY
|
||||||
|
- DEEPSEEK_API_KEY
|
||||||
|
- FIREWORKSAI_API_KEY
|
||||||
|
- FIREWORKS_AI_API_KEY
|
||||||
|
- FIREWORKS_API_KEY
|
||||||
|
- FRIENDLIAI_API_KEY
|
||||||
|
- GEMINI_API_KEY
|
||||||
|
- GROQ_API_KEY
|
||||||
|
- HUGGINGFACE_API_KEY
|
||||||
|
- MARITALK_API_KEY
|
||||||
|
- MISTRAL_API_KEY
|
||||||
|
- MISTRAL_AZURE_API_KEY
|
||||||
|
- NLP_CLOUD_API_KEY
|
||||||
|
- NVIDIA_NIM_API_KEY
|
||||||
|
- OLLAMA_API_KEY
|
||||||
|
- OPENAI_API_KEY
|
||||||
|
- OPENROUTER_API_KEY
|
||||||
|
- OR_API_KEY
|
||||||
|
- PALM_API_KEY
|
||||||
|
- PERPLEXITYAI_API_KEY
|
||||||
|
- PREDIBASE_API_KEY
|
||||||
|
- PROVIDER_API_KEY
|
||||||
|
- REPLICATE_API_KEY
|
||||||
|
- TOGETHERAI_API_KEY
|
||||||
|
- TOGETHER_AI_API_KEY
|
||||||
|
- TOGETHER_API_KEY
|
||||||
|
- VOLCENGINE_API_KEY
|
||||||
|
- VOYAGE_API_KEY
|
||||||
|
- XINFERENCE_API_KEY
|
||||||
|
<!--[[[end]]]-->
|
||||||
|
|
|
@ -18,4 +18,5 @@ cog $ARG \
|
||||||
aider/website/docs/languages.md \
|
aider/website/docs/languages.md \
|
||||||
aider/website/docs/config/dotenv.md \
|
aider/website/docs/config/dotenv.md \
|
||||||
aider/website/docs/config/options.md \
|
aider/website/docs/config/options.md \
|
||||||
aider/website/docs/config/aider_conf.md
|
aider/website/docs/config/aider_conf.md \
|
||||||
|
aider/website/docs/llms/other.md
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue