Using ChatBox
ChatBox is an open-source intelligent desktop application that supports all desktop platforms.
Download link: https://github.com/Bin-Huang/chatbox/releases
Usage: As shown in the image, fill in the Key from this site in the settings, and set the proxy (API domain) to
https://ai.burncloud.com
Settings diagram:
Quick Import of Burncloud Configuration
Starting from version 1.15.1, ChatBox supports importing model provider configurations in JSON format. You can manually copy and then import with one click in ChatBox. The OpenAI-compatible LLM configuration reference is as follows:
{
"id": "burncloud",
"name": "burncloud",
"type": "openai",
"iconUrl": "https://ai.burncloud.com/logo.png",
"urls": {
"website": "https://ai.burncloud.com",
"getApiKey": "https://ai.burncloud.com/token",
"docs": "https://ai.burncloud.com/docs",
"models": "https://ai.burncloud.com/pricing"
},
"settings": {
"apiHost": "https://ai.burncloud.com",
"apiPath": "/v1/chat/completions",
"models": [
{
"modelId": "gpt-4o-mini",
"nickname": "gpt-4o-mini",
"type": "chat",
"capabilities": ["vision", "tool_use"],
"contextWindow": 128000,
"maxOutput": 16384
},
{
"modelId": "gpt-4o",
"nickname": "gpt-4o",
"type": "chat",
"capabilities": ["vision", "tool_use"],
"contextWindow": 128000,
"maxOutput": 128000
},
{
"modelId": "deepseek-v3",
"nickname": "deepseek-v3",
"type": "chat",
"capabilities": ["tool_use"],
"contextWindow": 64000,
"maxOutput": 8000
},
{
"modelId": "deepseek-r1",
"nickname": "deepseek-r1",
"type": "chat",
"capabilities": ["reasoning"],
"contextWindow": 64000,
"maxOutput": 64000
},
{
"modelId": "gemini-2.5-pro",
"nickname": "gemini-2.5-pro",
"type": "chat",
"capabilities": ["vision", "tool_use"],
"contextWindow": 1000000,
"maxOutput": 32768
},
{
"modelId": "o3",
"nickname": "o3",
"type": "chat",
"capabilities": ["vision", "reasoning", "tool_use"],
"contextWindow": 200000,
"maxOutput": 100000
},
{
"modelId": "o4-mini",
"nickname": "o4-mini",
"type": "chat",
"capabilities": ["vision", "reasoning", "tool_use"],
"contextWindow": 200000,
"maxOutput": 100000
},
{
"modelId": "qwen3-235b-a22b",
"nickname": "qwen3-235b-a22b",
"type": "chat",
"capabilities": ["tool_use"],
"contextWindow": 128000,
"maxOutput": 8192
},
{
"modelId": "qwen3-235b-a22b-instruct-2507",
"nickname": "qwen3-235b-a22b-instruct-2507",
"type": "chat",
"capabilities": ["tool_use"],
"contextWindow": 128000,
"maxOutput": 32768
},
{
"modelId": "llama-4-maverick",
"nickname": "llama-4-maverick",
"type": "chat",
"capabilities": ["tool_use"],
"contextWindow": 128000,
"maxOutput": 0
},
{
"modelId": "gemini-2.5-flash",
"nickname": "gemini-2.5-flash",
"type": "chat",
"capabilities": ["vision", "tool_use"],
"contextWindow": 1000000,
"maxOutput": 0
},
{
"modelId": "gemini-2.5-flash-nothink",
"nickname": "gemini-2.5-flash-nothink",
"type": "chat",
"capabilities": ["vision", "tool_use"],
"contextWindow": 1000000,
"maxOutput": 0
},
{
"modelId": "claude-sonnet-4-20250514",
"nickname": "claude-sonnet-4-20250514",
"type": "chat",
"capabilities": ["vision", "tool_use"],
"contextWindow": 200000,
"maxOutput": 0
},
{
"modelId": "claude-opus-4-20250514",
"nickname": "claude-opus-4-20250514",
"type": "chat",
"capabilities": ["vision", "tool_use"],
"contextWindow": 200000,
"maxOutput": 0
},
{
"modelId": "gemini-2.5-pro",
"nickname": "gemini-2.5-pro",
"type": "chat",
"capabilities": ["vision", "reasoning", "tool_use"],
"contextWindow": 1000000,
"maxOutput": 0
},
{
"modelId": "doubao-1.5-pro-256k",
"nickname": "doubao-1.5-pro-256k",
"type": "chat",
"capabilities": ["vision"],
"contextWindow": 256000,
"maxOutput": 4096
},
{
"modelId": "grok-4",
"nickname": "grok-4",
"type": "chat",
"capabilities": ["vision", "tool_use"],
"contextWindow": 128000,
"maxOutput": 0
}
]
}
}