mirror of
https://git.openapi.site/https://github.com/desirecore/config-center.git
synced 2026-07-23 05:14:46 +08:00
feat: sync missing models from OpenRouter (fix watermark)
- Add 10 missing models released between 2026-06-30 and 2026-07-15 - OpenAI: GPT-5.6 Sol/Terra/Luna (+ Pro variants) — 6 models - Anthropic: Claude Sonnet 5 - Google: Gemini 3.1 Flash Lite Image (Nano Banana 2 Lite) - xAI: Grok 4.5 - Tencent: Hy3 (stable release, distinct from hy3-preview) - Update .sync-watermark from 1782276303 to 1784554658 - presetDataVersion: 79 → 80
This commit is contained in:
@@ -1,6 +1,20 @@
|
||||
{
|
||||
"description": "Anthropic Claude 系列模型规格。参数来源:config-center compute/providers/anthropic.json。",
|
||||
"specs": [
|
||||
{
|
||||
"id": "claude-sonnet-5",
|
||||
"displayName": "Claude Sonnet 5",
|
||||
"family": "claude-sonnet-5",
|
||||
"match": { "exact": ["claude-sonnet-5"], "patterns": ["claude-sonnet-5*"] },
|
||||
"spec": {
|
||||
"contextWindow": 1000000,
|
||||
"maxOutputTokens": 128000,
|
||||
"capabilities": ["chat", "reasoning", "code", "tool_use", "agent", "vision", "long_context"],
|
||||
"serviceType": ["chat"],
|
||||
"supportsReasoning": true,
|
||||
"description": "Anthropic 最强 Sonnet 级模型,支持自适应思考(effort: low/medium/high/max)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "claude-fable-5",
|
||||
"displayName": "Claude Fable 5",
|
||||
|
||||
@@ -1,6 +1,19 @@
|
||||
{
|
||||
"description": "Google Gemini 系列模型规格。参数来源:config-center compute/providers/google.json。",
|
||||
"specs": [
|
||||
{
|
||||
"id": "gemini-3.1-flash-lite-image",
|
||||
"displayName": "Gemini 3.1 Flash Lite Image (Nano Banana 2 Lite)",
|
||||
"family": "gemini-3.1",
|
||||
"match": { "exact": ["gemini-3.1-flash-lite-image"], "patterns": ["gemini-3.1-flash-lite-image*"] },
|
||||
"spec": {
|
||||
"contextWindow": 65536,
|
||||
"maxOutputTokens": 65536,
|
||||
"capabilities": ["chat", "vision", "image_generation"],
|
||||
"serviceType": ["image_gen"],
|
||||
"description": "Nano Banana 2 Lite,Google 最快的文生图模型"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "gemini-3.5-flash",
|
||||
"displayName": "Gemini 3.5 Flash",
|
||||
|
||||
@@ -1,6 +1,90 @@
|
||||
{
|
||||
"description": "OpenAI GPT / o 系列模型规格。参数来源:config-center compute/providers/openai.json。注意:gpt-4o / gpt-5 等存在子型号(-mini/-nano),故只用 exact 主键匹配,不使用宽泛 pattern 以防误吞子型号。o 系列 serviceType 由 responses 调整为 reasoning(responses 为 OpenAI 直连专有,对 NewAPI 网关不适用)。",
|
||||
"specs": [
|
||||
{
|
||||
"id": "gpt-5.6-sol",
|
||||
"displayName": "GPT-5.6 Sol",
|
||||
"family": "gpt-5.6",
|
||||
"match": { "exact": ["gpt-5.6-sol"], "patterns": ["gpt-5.6-sol*"] },
|
||||
"spec": {
|
||||
"contextWindow": 1050000,
|
||||
"maxOutputTokens": 128000,
|
||||
"capabilities": ["chat", "reasoning", "code", "tool_use", "agent", "vision", "long_context"],
|
||||
"serviceType": ["chat"],
|
||||
"supportsReasoning": true,
|
||||
"description": "GPT-5.6 旗舰模型,适合复杂推理、编程和 Agent 工作流"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "gpt-5.6-sol-pro",
|
||||
"displayName": "GPT-5.6 Sol Pro",
|
||||
"family": "gpt-5.6",
|
||||
"match": { "exact": ["gpt-5.6-sol-pro"], "patterns": ["gpt-5.6-sol-pro*"] },
|
||||
"spec": {
|
||||
"contextWindow": 1050000,
|
||||
"maxOutputTokens": 128000,
|
||||
"capabilities": ["chat", "reasoning", "code", "tool_use", "agent", "vision", "long_context"],
|
||||
"serviceType": ["reasoning"],
|
||||
"supportsReasoning": true,
|
||||
"description": "GPT-5.6 Sol 的 Pro 变体,reasoning.mode=pro"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "gpt-5.6-terra",
|
||||
"displayName": "GPT-5.6 Terra",
|
||||
"family": "gpt-5.6",
|
||||
"match": { "exact": ["gpt-5.6-terra"], "patterns": ["gpt-5.6-terra*"] },
|
||||
"spec": {
|
||||
"contextWindow": 1050000,
|
||||
"maxOutputTokens": 128000,
|
||||
"capabilities": ["chat", "reasoning", "code", "tool_use", "agent", "vision", "long_context"],
|
||||
"serviceType": ["chat"],
|
||||
"supportsReasoning": true,
|
||||
"description": "GPT-5.6 均衡型模型,介于 Sol 和 Luna 之间"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "gpt-5.6-terra-pro",
|
||||
"displayName": "GPT-5.6 Terra Pro",
|
||||
"family": "gpt-5.6",
|
||||
"match": { "exact": ["gpt-5.6-terra-pro"], "patterns": ["gpt-5.6-terra-pro*"] },
|
||||
"spec": {
|
||||
"contextWindow": 1050000,
|
||||
"maxOutputTokens": 128000,
|
||||
"capabilities": ["chat", "reasoning", "code", "tool_use", "agent", "vision", "long_context"],
|
||||
"serviceType": ["reasoning"],
|
||||
"supportsReasoning": true,
|
||||
"description": "GPT-5.6 Terra 的 Pro 变体,reasoning.mode=pro"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "gpt-5.6-luna",
|
||||
"displayName": "GPT-5.6 Luna",
|
||||
"family": "gpt-5.6",
|
||||
"match": { "exact": ["gpt-5.6-luna"], "patterns": ["gpt-5.6-luna*"] },
|
||||
"spec": {
|
||||
"contextWindow": 1050000,
|
||||
"maxOutputTokens": 128000,
|
||||
"capabilities": ["chat", "reasoning", "code", "tool_use", "agent", "vision", "long_context"],
|
||||
"serviceType": ["chat"],
|
||||
"supportsReasoning": true,
|
||||
"description": "GPT-5.6 轻量高效模型,适合高吞吐低延迟场景"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "gpt-5.6-luna-pro",
|
||||
"displayName": "GPT-5.6 Luna Pro",
|
||||
"family": "gpt-5.6",
|
||||
"match": { "exact": ["gpt-5.6-luna-pro"], "patterns": ["gpt-5.6-luna-pro*"] },
|
||||
"spec": {
|
||||
"contextWindow": 1050000,
|
||||
"maxOutputTokens": 128000,
|
||||
"capabilities": ["chat", "reasoning", "code", "tool_use", "agent", "vision", "long_context"],
|
||||
"serviceType": ["reasoning"],
|
||||
"supportsReasoning": true,
|
||||
"description": "GPT-5.6 Luna 的 Pro 变体,reasoning.mode=pro"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "gpt-image-2",
|
||||
"displayName": "GPT Image 2",
|
||||
|
||||
@@ -1,6 +1,21 @@
|
||||
{
|
||||
"description": "腾讯混元系列模型规格。参数来源:config-center compute/providers/tencent.json。hunyuan-2.0-thinking 和 hunyuan-t1 为推理模型。",
|
||||
"specs": [
|
||||
{
|
||||
"id": "hy3",
|
||||
"displayName": "混元 Hy3",
|
||||
"family": "hy3",
|
||||
"match": { "exact": ["hy3"], "patterns": ["hy3*"] },
|
||||
"spec": {
|
||||
"contextWindow": 262144,
|
||||
"maxOutputTokens": 262144,
|
||||
"capabilities": ["chat", "reasoning", "code", "tool_use", "agent"],
|
||||
"serviceType": ["chat"],
|
||||
"defaultTemperature": 0.9,
|
||||
"supportsReasoning": true,
|
||||
"description": "腾讯混元 Hy3 正式版,295B MoE(21B active),支持可配置推理强度"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "hy3-preview",
|
||||
"displayName": "混元 Hy3 Preview",
|
||||
|
||||
@@ -1,6 +1,20 @@
|
||||
{
|
||||
"description": "xAI Grok 系列模型规格。参数来源:config-center compute/providers/xai.json。Grok 网关命名变体较多(含日期戳/-fast/-reasoning 后缀),主要依赖 family=grok-4 兜底匹配。",
|
||||
"specs": [
|
||||
{
|
||||
"id": "grok-4.5",
|
||||
"displayName": "Grok 4.5",
|
||||
"family": "grok-4",
|
||||
"match": { "exact": ["grok-4.5"], "patterns": ["grok-4.5*"] },
|
||||
"spec": {
|
||||
"contextWindow": 500000,
|
||||
"maxOutputTokens": 128000,
|
||||
"capabilities": ["chat", "reasoning", "code", "tool_use", "vision", "long_context"],
|
||||
"serviceType": ["chat"],
|
||||
"supportsReasoning": true,
|
||||
"description": "xAI 最新旗舰模型,编程和 STEM 领域前沿"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "grok-4-3",
|
||||
"displayName": "Grok 4.3",
|
||||
|
||||
Reference in New Issue
Block a user