feat: 为 Claude 和 Gemini 模型新增多模态支持与配置选项
- 为 Claude 和 Gemini 模型新增上下文与输出限制、多模态输入输出支持及不同思考级别配置。
This commit is contained in:
@@ -19,10 +19,28 @@
|
||||
},
|
||||
"models": {
|
||||
"claude-opus-4-5-thinking": {
|
||||
"name": "Claude Opus 4.5 (Thinking)"
|
||||
"name": "Claude Opus 4.5 (Thinking)",
|
||||
"limit": { "context": 200000, "output": 64000 },
|
||||
"modalities": {
|
||||
"input": ["text", "image", "pdf"],
|
||||
"output": ["text"]
|
||||
},
|
||||
"variants": {
|
||||
"low": { "thinkingConfig": { "thinkingBudget": 8192 } },
|
||||
"max": { "thinkingConfig": { "thinkingBudget": 32768 } }
|
||||
}
|
||||
},
|
||||
"claude-sonnet-4-5-thinking": {
|
||||
"name": "Claude Sonnet 4.5 (Thinking)"
|
||||
"name": "Claude Sonnet 4.5 (Thinking)",
|
||||
"limit": { "context": 200000, "output": 64000 },
|
||||
"modalities": {
|
||||
"input": ["text", "image", "pdf"],
|
||||
"output": ["text"]
|
||||
},
|
||||
"variants": {
|
||||
"low": { "thinkingConfig": { "thinkingBudget": 8192 } },
|
||||
"max": { "thinkingConfig": { "thinkingBudget": 32768 } }
|
||||
}
|
||||
},
|
||||
"claude-sonnet-4-5": {
|
||||
"name": "Claude Sonnet 4.5"
|
||||
@@ -38,10 +56,30 @@
|
||||
},
|
||||
"models": {
|
||||
"gemini-3-pro-high": {
|
||||
"name": "Gemini 3 Pro (High)"
|
||||
"name": "Gemini 3 Pro (High)",
|
||||
"limit": { "context": 1048576, "output": 65536 },
|
||||
"modalities": {
|
||||
"input": ["text", "image", "pdf"],
|
||||
"output": ["text"]
|
||||
},
|
||||
"variants": {
|
||||
"low": { "thinkingLevel": "low" },
|
||||
"high": { "thinkingLevel": "high" }
|
||||
}
|
||||
},
|
||||
"gemini-3-flash": {
|
||||
"name": "Gemini 3 Flash"
|
||||
"name": "Gemini 3 Flash",
|
||||
"limit": { "context": 1048576, "output": 65536 },
|
||||
"modalities": {
|
||||
"input": ["text", "image", "pdf"],
|
||||
"output": ["text"]
|
||||
},
|
||||
"variants": {
|
||||
"minimal": { "thinkingLevel": "minimal" },
|
||||
"low": { "thinkingLevel": "low" },
|
||||
"medium": { "thinkingLevel": "medium" },
|
||||
"high": { "thinkingLevel": "high" }
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user