1
0
forked from agents/opencode

refactor: 初步迁移模型到litellm

This commit is contained in:
2026-02-27 13:57:37 +08:00
parent 262ee1758a
commit 1be7ac925d
2 changed files with 61 additions and 69 deletions

View File

@@ -2,54 +2,51 @@
"$schema": "https://opencode.ai/config.json",
"autoupdate": false,
"theme": "system",
"model": "cpa-anthropic/claude-opus-4-6",
"small_model": "cpa-google/gemini-3-flash",
"model": "litellm/claude-opus-4-6",
"small_model": "litellm/claude-haiku-4-5",
"plugin": ["oh-my-opencode@latest"],
// ref: https://models.dev/
"provider": {
// ref: https://models.dev/
"cpa-anthropic": {
"name": "CPA Anthropic",
"npm": "@ai-sdk/anthropic",
"litellm": {
"name": "LiteLLM",
"npm": "@ai-sdk/openai-compatible",
"options": {
"baseURL": "https://cpa.furtherverse.com/v1",
"apiKey": "{env:CPA_API_KEY}",
"baseURL": "https://ai.furtherverse.com/v1",
"apiKey": "{env:LITELLM_API_KEY}",
"setCacheKey": true
},
"models": {
// Anthropic
"claude-opus-4-6": {
"name": "Claude Opus 4.6",
"tool_call": true,
"reasoning": true,
"modalities": {
"input": ["text", "image", "pdf"],
"output": ["text"]
},
"limit": { "context": 1000000, "output": 128000 }
"limit": { "context": 200000, "output": 128000 }
},
"claude-sonnet-4-5": {
"name": "Claude Sonnet 4.5",
"tool_call": true,
"reasoning": false,
"claude-sonnet-4-6": {
"name": "Claude Sonnet 4.6",
"reasoning": true,
"modalities": {
"input": ["text", "image", "pdf"],
"output": ["text"]
},
"limit": { "context": 200000, "output": 64000 }
}
}
},
"cpa-google": {
"name": "CPA Google",
"npm": "@ai-sdk/google",
"options": {
"baseURL": "https://cpa.furtherverse.com/v1beta",
"apiKey": "{env:CPA_API_KEY}",
"setCacheKey": true
},
"models": {
"gemini-3-pro": {
"name": "Gemini 3 Pro",
"tool_call": true,
},
"claude-haiku-4-5": {
"name": "Claude Haiku 4.5",
"reasoning": true,
"modalities": {
"input": ["text", "image", "pdf"],
"output": ["text"]
},
"limit": { "context": 200000, "output": 64000 }
},
// Google
"gemini-3.1-pro-preview": {
"name": "Gemini 3.1 Pro",
"reasoning": true,
"modalities": {
"input": ["text", "image", "video", "audio", "pdf"],
@@ -57,30 +54,27 @@
},
"limit": { "context": 1048576, "output": 65536 }
},
"gemini-3-flash": {
"gemini-3-flash-preview": {
"name": "Gemini 3 Flash",
"tool_call": true,
"reasoning": true,
"modalities": {
"input": ["text", "image", "video", "audio", "pdf"],
"output": ["text"]
},
"limit": { "context": 1048576, "output": 65536 }
}
}
},
"cpa-openai": {
"name": "CPA OpenAI",
"npm": "@ai-sdk/openai",
"options": {
"baseURL": "https://cpa.furtherverse.com/v1",
"apiKey": "{env:CPA_API_KEY}",
"setCacheKey": true
},
"models": {
},
// OpenAI
"gpt-5.2": {
"name": "GPT-5.2",
"reasoning": true,
"modalities": {
"input": ["text", "image"],
"output": ["text"]
},
"limit": { "context": 400000, "input": 272000, "output": 128000 }
},
"gpt-5.3-codex": {
"name": "GPT-5.3-Codex",
"tool_call": true,
"reasoning": true,
"modalities": {
"input": ["text", "image", "pdf"],
@@ -88,9 +82,8 @@
},
"limit": { "context": 400000, "input": 272000, "output": 128000 }
},
"gpt-5.2": {
"name": "GPT-5.2",
"tool_call": true,
"gpt-5.1-codex-mini": {
"name": "GPT-5.1 Codex mini",
"reasoning": true,
"modalities": {
"input": ["text", "image"],