Agent Integration Guides
IDE Extension
Connect Continue to Anoman AI
Configure Continue — the open-source AI code assistant for VS Code and JetBrains — to use Anoman as the model provider. Guardrails apply to every autocomplete and chat request.
Prerequisites
- An Anoman AI account with an active API key
- Continue extension installed in VS Code or JetBrains
Step 1: Open Continue config
Click the Continue icon in VS Code, then click the settings gear to open ~/.continue/config.json.
Step 2: Add Anoman as a model provider
Add an entry to the models array in your Continue config. Use the openai provider type with Anoman's base URL.
{
"models": [
{
"title": "Anoman — GPT-4o mini",
"provider": "openai",
"model": "gpt-4o-mini",
"apiKey": "anm-sk-your-key-here",
"apiBase": "https://api.anoman.io/v1"
},
{
"title": "Anoman — Claude Sonnet",
"provider": "openai",
"model": "claude-sonnet-4-6",
"apiKey": "anm-sk-your-key-here",
"apiBase": "https://api.anoman.io/v1"
}
]
}Step 3: Configure autocomplete (optional)
To route autocomplete through Anoman, add a tabAutocompleteModel entry:
{
"tabAutocompleteModel": {
"title": "Anoman autocomplete",
"provider": "openai",
"model": "gpt-4o-mini",
"apiKey": "anm-sk-your-key-here",
"apiBase": "https://api.anoman.io/v1"
}
}Guardrail transparency headers
X-Anoman-Guardrail-Injection: pass score=0.04
X-Anoman-Guardrail-Pii: pass
X-Anoman-Guardrail-Content: pass
X-Anoman-Cache: noneNeed help with your integration?
Join the Founding 50 for early access and direct support from the Anoman team.
Join Founding 50