mirror of
https://git.openapi.site/https://github.com/desirecore/config-center.git
synced 2026-06-06 05:50:50 +08:00
* feat(model-specs): 新增模型规格库与 schema 契约 - compute/model-specs/:按厂商维护模型内在参数(上下文窗口/最大输出/能力/serviceType/默认温度,不含价签) - schemas/model-spec.schema.json:Draft-07 契约,spec 允许 null(新文件不影响老客户端 frozen 契约) - scripts/validate.mjs:pickSchemaKey 纳入 model-specs 校验 - manifest.presetDataVersion 54→55 * feat(model-specs): 新增小米 MiMo 系列模型规格;bump presetDataVersion 55→56 * feat(model-specs): 补全全量模型规格;presetDataVersion 56→57 * feat(model-specs): 新增 releasedAt/retiredAt 时间戳字段;补充 mimo 退役日期
94 lines
2.7 KiB
JSON
94 lines
2.7 KiB
JSON
{
|
||
"description": "Moonshot Kimi 系列模型规格。参数来源:config-center compute/providers/moonshot.json。注意 kimi-k2 存在多个子版本(k2.5/k2.6/k2-thinking),故 kimi-k2 仅用 exact 主键匹配,不用宽 pattern。",
|
||
"specs": [
|
||
{
|
||
"id": "kimi-k2.6",
|
||
"displayName": "Kimi K2.6",
|
||
"family": "kimi-k2.6",
|
||
"spec": {
|
||
"contextWindow": 262144,
|
||
"maxOutputTokens": 16384,
|
||
"capabilities": ["chat", "reasoning", "code", "tool_use", "agent", "long_context", "vision"],
|
||
"serviceType": ["chat"],
|
||
"defaultTemperature": 1,
|
||
"supportsReasoning": true
|
||
}
|
||
},
|
||
{
|
||
"id": "kimi-k2.5",
|
||
"displayName": "Kimi K2.5",
|
||
"family": "kimi-k2.5",
|
||
"spec": {
|
||
"contextWindow": 256000,
|
||
"maxOutputTokens": 32768,
|
||
"capabilities": ["chat", "reasoning", "code", "tool_use", "agent", "long_context", "vision"],
|
||
"serviceType": ["chat"],
|
||
"defaultTemperature": 1,
|
||
"supportsReasoning": true
|
||
}
|
||
},
|
||
{
|
||
"id": "kimi-k2-thinking",
|
||
"displayName": "Kimi K2 Thinking",
|
||
"family": "kimi-k2-thinking",
|
||
"spec": {
|
||
"contextWindow": 256000,
|
||
"maxOutputTokens": 16384,
|
||
"capabilities": ["reasoning", "math", "code", "deep_thinking", "long_context"],
|
||
"serviceType": ["reasoning"],
|
||
"defaultTemperature": 1,
|
||
"supportsReasoning": true
|
||
}
|
||
},
|
||
{
|
||
"id": "kimi-k2",
|
||
"displayName": "Kimi K2",
|
||
"family": "kimi-k2",
|
||
"spec": {
|
||
"contextWindow": 256000,
|
||
"maxOutputTokens": 8192,
|
||
"capabilities": ["chat", "reasoning", "code", "tool_use", "agent", "long_context"],
|
||
"serviceType": ["chat"],
|
||
"defaultTemperature": 0.6,
|
||
"supportsReasoning": true
|
||
}
|
||
},
|
||
{
|
||
"id": "moonshot-v1-8k",
|
||
"displayName": "Moonshot v1 8K",
|
||
"family": "moonshot-v1",
|
||
"spec": {
|
||
"contextWindow": 8192,
|
||
"maxOutputTokens": 4096,
|
||
"capabilities": ["chat", "code"],
|
||
"serviceType": ["chat"],
|
||
"defaultTemperature": 0
|
||
}
|
||
},
|
||
{
|
||
"id": "moonshot-v1-32k",
|
||
"displayName": "Moonshot v1 32K",
|
||
"family": "moonshot-v1",
|
||
"spec": {
|
||
"contextWindow": 32768,
|
||
"maxOutputTokens": 4096,
|
||
"capabilities": ["chat", "code", "long_context"],
|
||
"serviceType": ["chat"],
|
||
"defaultTemperature": 0
|
||
}
|
||
},
|
||
{
|
||
"id": "moonshot-v1-128k",
|
||
"displayName": "Moonshot v1 128K",
|
||
"family": "moonshot-v1",
|
||
"spec": {
|
||
"contextWindow": 131072,
|
||
"maxOutputTokens": 4096,
|
||
"capabilities": ["chat", "code", "long_context"],
|
||
"serviceType": ["chat"],
|
||
"defaultTemperature": 0
|
||
}
|
||
}
|
||
]
|
||
}
|