Other Integrations
OfoxAI is compatible with OpenAI / Anthropic / Gemini protocols, which means it works with virtually any tool that uses these protocols. Below are configuration guides for some common tools.
General Configuration Principles
Regardless of the tool, configuration follows these principles:
| Tool’s Protocol | Base URL | API Key Header |
|---|---|---|
| OpenAI Compatible | https://api.ofox.ai/v1 | Authorization: Bearer sk-xxx |
| Anthropic Native | https://api.ofox.ai/anthropic | x-api-key: sk-xxx |
| Gemini Native | https://api.ofox.ai/gemini | x-goog-api-key: sk-xxx |
Continue (VS Code / JetBrains)
Continue is an open-source AI coding assistant supporting VS Code and JetBrains IDEs.
~/.continue/config.json
{
"models": [
{
"title": "OfoxAI GPT-4o",
"provider": "openai",
"model": "openai/gpt-4o",
"apiBase": "https://api.ofox.ai/v1",
"apiKey": "<your OFOXAI_API_KEY>"
},
{
"title": "OfoxAI Claude Sonnet",
"provider": "openai",
"model": "anthropic/claude-sonnet-4.5",
"apiBase": "https://api.ofox.ai/v1",
"apiKey": "<your OFOXAI_API_KEY>"
}
]
}Aider
Aider is a command-line AI pair programming tool.
~/.zshrc
export OPENAI_API_KEY=<your OFOXAI_API_KEY>
export OPENAI_API_BASE=https://api.ofox.ai/v1aider --model openai/gpt-4oBoltAI (macOS)
BoltAI is a native macOS AI assistant app.
- Open BoltAI → Preferences → Providers
- Add Custom OpenAI
- Enter Base URL:
https://api.ofox.ai/v1 - Enter your API Key
TypingMind
TypingMind is an AI chat interface tool.
- Go to Settings → Custom Endpoint
- API Endpoint:
https://api.ofox.ai/v1 - API Key: Your OfoxAI API Key
ChatBox
ChatBox is a cross-platform AI desktop client.
- Open ChatBox → Settings → AI Provider
- Select OpenAI API Compatible
- API Domain:
https://api.ofox.ai - API Key: Your OfoxAI API Key
Custom Integration
For other tools not listed here, the general steps are:
- Find the tool’s API configuration settings
- Set the API Base URL to
https://api.ofox.ai/v1 - Set the API Key to your OfoxAI Key
- Use the
provider/model-nameformat for model names
If you’ve successfully configured OfoxAI in a tool, we welcome PRs to add it to this documentation: GitHub Repository
Last updated on