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 退役日期
77 lines
2.9 KiB
JSON
77 lines
2.9 KiB
JSON
{
|
||
"description": "百度文心 ERNIE 系列模型规格。参数来源:config-center compute/providers/baidu.json。ernie-x1.1 为纯推理模型,defaultTemperature 为 null;ernie-5.0-thinking-latest 同时支持 chat 和 reasoning。",
|
||
"specs": [
|
||
{
|
||
"id": "ernie-5.0-thinking-latest",
|
||
"displayName": "文心 ERNIE 5.0",
|
||
"family": "ernie-5",
|
||
"match": { "exact": ["ernie-5.0-thinking-latest"], "patterns": ["ernie-5.0-thinking*"] },
|
||
"spec": {
|
||
"contextWindow": 128000,
|
||
"maxOutputTokens": 65536,
|
||
"capabilities": ["chat", "reasoning", "vision", "multimodal", "tool_use"],
|
||
"serviceType": ["chat", "reasoning"],
|
||
"supportsReasoning": true,
|
||
"description": "百度最新旗舰模型,支持深度推理、多模态和工具调用"
|
||
}
|
||
},
|
||
{
|
||
"id": "ernie-5.0",
|
||
"displayName": "文心 ERNIE 5.0 非思考",
|
||
"family": "ernie-5",
|
||
"match": { "exact": ["ernie-5.0"] },
|
||
"spec": {
|
||
"contextWindow": 131072,
|
||
"maxOutputTokens": 65536,
|
||
"capabilities": ["chat", "vision", "multimodal", "tool_use"],
|
||
"serviceType": ["chat"],
|
||
"defaultTemperature": 0.95,
|
||
"description": "百度 ERNIE 5.0 旗舰模型,128K 上下文,最大输出 65536 token"
|
||
}
|
||
},
|
||
{
|
||
"id": "ernie-4.5-turbo-128k",
|
||
"displayName": "文心 ERNIE 4.5 Turbo",
|
||
"family": "ernie-4.5",
|
||
"match": { "exact": ["ernie-4.5-turbo-128k"], "patterns": ["ernie-4.5-turbo-128k*"] },
|
||
"spec": {
|
||
"contextWindow": 131072,
|
||
"maxOutputTokens": 12288,
|
||
"capabilities": ["chat", "code", "vision", "long_context", "fast"],
|
||
"serviceType": ["chat"],
|
||
"defaultTemperature": 0.8,
|
||
"description": "百度高性价比长上下文模型,128K 窗口,最大输出 12288 token"
|
||
}
|
||
},
|
||
{
|
||
"id": "ernie-4.5-turbo-20260402",
|
||
"displayName": "文心 ERNIE 4.5 Turbo 20260402",
|
||
"family": "ernie-4.5",
|
||
"match": { "exact": ["ernie-4.5-turbo-20260402"] },
|
||
"spec": {
|
||
"contextWindow": 131072,
|
||
"maxOutputTokens": 12288,
|
||
"capabilities": ["chat", "code", "vision", "long_context", "fast"],
|
||
"serviceType": ["chat"],
|
||
"defaultTemperature": 0.8,
|
||
"description": "百度 ERNIE 4.5 Turbo 20260402 快照版,128K 上下文"
|
||
}
|
||
},
|
||
{
|
||
"id": "ernie-x1.1",
|
||
"displayName": "文心 ERNIE X1.1",
|
||
"family": "ernie-x1",
|
||
"match": { "exact": ["ernie-x1.1"], "patterns": ["ernie-x1*"] },
|
||
"spec": {
|
||
"contextWindow": 65536,
|
||
"maxOutputTokens": 65536,
|
||
"capabilities": ["chat", "reasoning", "deep_thinking", "math", "code"],
|
||
"serviceType": ["reasoning"],
|
||
"defaultTemperature": null,
|
||
"supportsReasoning": true,
|
||
"description": "百度 ERNIE X1.1 深度思考推理模型,64K 上下文"
|
||
}
|
||
}
|
||
]
|
||
}
|