Integration Guide
Step-by-step setup for using Infux with Aider
pip install aider-chat or pipx install aider-chat)Note: Aider requires the openai/ prefix for OpenAI-compatible providers.
aider \ --openai-api-key "sk-infux-your_key_here" \ --openai-api-base "https://api.infux.dev/v1" \ --model "openai/deepseek-v3-0324"
export OPENAI_API_KEY="sk-infux-your_key_here" export OPENAI_API_BASE="https://api.infux.dev/v1"
Then run: aider --model openai/deepseek-v3-0324
openai-api-key: sk-infux-your_key_here openai-api-base: https://api.infux.dev/v1 model: openai/deepseek-v3-0324
| Use Case | Model | Why |
|---|---|---|
| Code editing | openai/deepseek-v3-0324 | Fast, great at edits |
| Architect mode | openai/kimi-k2.5-thinking | Chain-of-thought reasoning |
| Budget-friendly | openai/glm-4.7-flash | Very fast, 200K context |
| Pair with architect | openai/kimi-k2.5 | Strong SWE-bench, large context |
aider \ --openai-api-key "sk-infux-your_key_here" \ --openai-api-base "https://api.infux.dev/v1" \ --model "openai/kimi-k2.5-thinking" \ --editor-model "openai/deepseek-v3-0324"
Make sure you include the openai/ prefix before the model ID.
Check that OPENAI_API_BASE uses https://, not http://.