aider/aider/website/docs/llms/openai-compat.md
2024-09-26 11:40:48 -07:00

28 lines
620 B
Markdown

---
parent: Connecting to LLMs
nav_order: 500
---
# OpenAI compatible APIs
Aider can connect to any LLM which is accessible via an OpenAI compatible API endpoint.
```
python -m pip install -U aider-chat
# Mac/Linux:
export OPENAI_API_BASE=<endpoint>
export OPENAI_API_KEY=<key>
# Windows:
setx OPENAI_API_BASE <endpoint>
setx OPENAI_API_KEY <key>
# ... restart shell after setx commands
# Prefix the model name with openai/
aider --model openai/<model-name>
```
See the [model warnings](warnings.html)
section for information on warnings which will occur
when working with models that aider is not familiar with.