Skip to Content
IntegrationsOther clients

Other Integrations

HaoAI is compatible with OpenAI and Anthropic protocols, with a Grok / xAI protocol entry point. 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.hao.ai/v1Authorization: Bearer sk-xxx
Anthropic Nativehttps://api.hao.ai/anthropicx-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": "HaoAI GPT-4o", "provider": "openai", "model": "openai/gpt-4o", "apiBase": "https://api.hao.ai/v1", "apiKey": "<your HAOAI_API_KEY>" }, { "title": "HaoAI Claude Sonnet", "provider": "openai", "model": "anthropic/claude-sonnet-4.6", "apiBase": "https://api.hao.ai/v1", "apiKey": "<your HAOAI_API_KEY>" } ] }

Aider

Aider  is a command-line AI pair programming tool.

~/.zshrc
export OPENAI_API_KEY=<your HAOAI_API_KEY> export OPENAI_API_BASE=https://api.hao.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.hao.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.hao.ai/v1
  3. API Key: Your HaoAI 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.hao.ai
  4. API Key: Your HaoAI 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.hao.ai/v1
  3. Set the API Key to your HaoAI Key
  4. Use the provider/model-name format for model names

If you’ve successfully configured HaoAI in a tool, we welcome PRs to add it to this documentation: GitHub Repository