Skip to Content

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 ProtocolBase URLAPI Key Header
OpenAI Compatiblehttps://api.ofox.ai/v1Authorization: Bearer sk-xxx
Anthropic Nativehttps://api.ofox.ai/anthropicx-api-key: sk-xxx
Gemini Nativehttps://api.ofox.ai/geminix-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/v1
aider --model openai/gpt-4o

BoltAI (macOS)

BoltAI  is a native macOS AI assistant app.

  1. Open BoltAI → PreferencesProviders
  2. Add Custom OpenAI
  3. Enter Base URL: https://api.ofox.ai/v1
  4. Enter your API Key

TypingMind

TypingMind  is an AI chat interface tool.

  1. Go to SettingsCustom Endpoint
  2. API Endpoint: https://api.ofox.ai/v1
  3. API Key: Your OfoxAI API Key

ChatBox

ChatBox  is a cross-platform AI desktop client.

  1. Open ChatBox → SettingsAI Provider
  2. Select OpenAI API Compatible
  3. API Domain: https://api.ofox.ai
  4. API Key: Your OfoxAI API Key

Custom Integration

For other tools not listed here, the general steps are:

  1. Find the tool’s API configuration settings
  2. Set the API Base URL to https://api.ofox.ai/v1
  3. Set the API Key to your OfoxAI Key
  4. Use the provider/model-name format 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