mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-23 19:21:18 +00:00
* fix(models): refresh bundled provider catalogs * docs(models): refresh generated docs map * fix(xiaomi): keep provider helper private * chore(release): defer catalog release note
146 lines
3.6 KiB
JSON
146 lines
3.6 KiB
JSON
{
|
|
"id": "chutes",
|
|
"activation": {
|
|
"onStartup": false
|
|
},
|
|
"enabledByDefault": true,
|
|
"providers": ["chutes"],
|
|
"providerEndpoints": [
|
|
{
|
|
"endpointClass": "chutes-native",
|
|
"hosts": ["llm.chutes.ai"]
|
|
}
|
|
],
|
|
"providerRequest": {
|
|
"providers": {
|
|
"chutes": {
|
|
"family": "chutes"
|
|
}
|
|
}
|
|
},
|
|
"setup": {
|
|
"providers": [
|
|
{
|
|
"id": "chutes",
|
|
"envVars": ["CHUTES_API_KEY", "CHUTES_OAUTH_TOKEN"]
|
|
}
|
|
]
|
|
},
|
|
"providerAuthChoices": [
|
|
{
|
|
"provider": "chutes",
|
|
"method": "oauth",
|
|
"choiceId": "chutes",
|
|
"appGuidedAuth": "oauth",
|
|
"choiceLabel": "Chutes (OAuth)",
|
|
"choiceHint": "Browser sign-in",
|
|
"groupId": "chutes",
|
|
"groupLabel": "Chutes",
|
|
"groupHint": "OAuth + API key"
|
|
},
|
|
{
|
|
"provider": "chutes",
|
|
"method": "api-key",
|
|
"choiceId": "chutes-api-key",
|
|
"appGuidedSecret": true,
|
|
"choiceLabel": "Chutes API key",
|
|
"choiceHint": "Open-source models including Llama, DeepSeek, and more",
|
|
"groupId": "chutes",
|
|
"groupLabel": "Chutes",
|
|
"groupHint": "OAuth + API key",
|
|
"optionKey": "chutesApiKey",
|
|
"cliFlag": "--chutes-api-key",
|
|
"cliOption": "--chutes-api-key <key>",
|
|
"cliDescription": "Chutes API key"
|
|
}
|
|
],
|
|
"configSchema": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {}
|
|
},
|
|
"modelCatalog": {
|
|
"providers": {
|
|
"chutes": {
|
|
"baseUrl": "https://llm.chutes.ai/v1",
|
|
"api": "openai-completions",
|
|
"models": [
|
|
{
|
|
"id": "deepseek-ai/DeepSeek-V3.2-TEE",
|
|
"name": "deepseek-ai/DeepSeek-V3.2-TEE",
|
|
"reasoning": true,
|
|
"input": ["text"],
|
|
"contextWindow": 131072,
|
|
"maxTokens": 65536,
|
|
"cost": {
|
|
"input": 1,
|
|
"output": 1,
|
|
"cacheRead": 0.5,
|
|
"cacheWrite": 0
|
|
}
|
|
},
|
|
{
|
|
"id": "moonshotai/Kimi-K2.5-TEE",
|
|
"name": "moonshotai/Kimi-K2.5-TEE",
|
|
"reasoning": true,
|
|
"input": ["text", "image"],
|
|
"contextWindow": 262144,
|
|
"maxTokens": 65535,
|
|
"cost": {
|
|
"input": 0.44,
|
|
"output": 2,
|
|
"cacheRead": 0.22,
|
|
"cacheWrite": 0
|
|
}
|
|
},
|
|
{
|
|
"id": "zai-org/GLM-5-TEE",
|
|
"name": "zai-org/GLM-5-TEE",
|
|
"reasoning": true,
|
|
"input": ["text"],
|
|
"contextWindow": 202752,
|
|
"maxTokens": 65535,
|
|
"cost": {
|
|
"input": 0.95,
|
|
"output": 2.55,
|
|
"cacheRead": 0.475,
|
|
"cacheWrite": 0
|
|
}
|
|
},
|
|
{
|
|
"id": "MiniMaxAI/MiniMax-M2.5-TEE",
|
|
"name": "MiniMaxAI/MiniMax-M2.5-TEE",
|
|
"reasoning": true,
|
|
"input": ["text"],
|
|
"contextWindow": 196608,
|
|
"maxTokens": 65536,
|
|
"cost": {
|
|
"input": 0.15,
|
|
"output": 1.2,
|
|
"cacheRead": 0.075,
|
|
"cacheWrite": 0
|
|
}
|
|
},
|
|
{
|
|
"id": "Qwen/Qwen3.5-397B-A17B-TEE",
|
|
"name": "Qwen/Qwen3.5-397B-A17B-TEE",
|
|
"reasoning": true,
|
|
"input": ["text", "image"],
|
|
"contextWindow": 262144,
|
|
"maxTokens": 65536,
|
|
"cost": {
|
|
"input": 0.45,
|
|
"output": 3,
|
|
"cacheRead": 0.225,
|
|
"cacheWrite": 0
|
|
}
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"discovery": {
|
|
"chutes": "refreshable"
|
|
}
|
|
}
|
|
}
|