Continue
Beta
Continue is an open-source AI code assistant for VS Code and JetBrains. You can connect Continue to BotConnector Cloud using standard OpenAI provider definitions in ~/.continue/config.json.
---
1. config.json Configuration
Add BotConnector models to the models array in your Continue configuration file:
json
{
"models": [
{
"title": "BotConnector - Agnes 3.0 Flash",
"provider": "openai",
"model": "agnes-3.0-flash",
"apiBase": "https://api.botconnector.id/v1",
"apiKey": "bc_live_your_actual_key_here"
},
{
"title": "BotConnector - Ling 3.0 Flash",
"provider": "openai",
"model": "ling-3.0-flash",
"apiBase": "https://api.botconnector.id/v1",
"apiKey": "bc_live_your_actual_key_here"
},
{
"title": "BotConnector - DeepSeek V4 Flash",
"provider": "openai",
"model": "deepseek-v4-flash",
"apiBase": "https://api.botconnector.id/v1",
"apiKey": "bc_live_your_actual_key_here"
}
]
}---
2. Model Discovery & Catalog Inspection
- Inspect Active Models: Run the following terminal command anytime to list all available models:
``bash curl -s https://api.botconnector.id/v1/models | jq -r '.data[].id' ``
- Use any canonical Model ID from the output for the
modelparameter inconfig.json. - Manage and create your API keys at Workspace → API Keys.