|
| 1 | +{ |
| 2 | + "description": "百度文心 ERNIE 系列模型规格。参数来源:config-center compute/providers/baidu.json。ernie-x1.1 为纯推理模型,defaultTemperature 为 null;ernie-5.0-thinking-latest 同时支持 chat 和 reasoning。", |
| 3 | + "specs": [ |
| 4 | + { |
| 5 | + "id": "ernie-5.0-thinking-latest", |
| 6 | + "displayName": "文心 ERNIE 5.0", |
| 7 | + "family": "ernie-5", |
| 8 | + "match": { "exact": ["ernie-5.0-thinking-latest"], "patterns": ["ernie-5.0-thinking*"] }, |
| 9 | + "spec": { |
| 10 | + "contextWindow": 128000, |
| 11 | + "maxOutputTokens": 65536, |
| 12 | + "capabilities": ["chat", "reasoning", "vision", "multimodal", "tool_use"], |
| 13 | + "serviceType": ["chat", "reasoning"], |
| 14 | + "supportsReasoning": true, |
| 15 | + "description": "百度最新旗舰模型,支持深度推理、多模态和工具调用" |
| 16 | + } |
| 17 | + }, |
| 18 | + { |
| 19 | + "id": "ernie-5.0", |
| 20 | + "displayName": "文心 ERNIE 5.0 非思考", |
| 21 | + "family": "ernie-5", |
| 22 | + "match": { "exact": ["ernie-5.0"] }, |
| 23 | + "spec": { |
| 24 | + "contextWindow": 131072, |
| 25 | + "maxOutputTokens": 65536, |
| 26 | + "capabilities": ["chat", "vision", "multimodal", "tool_use"], |
| 27 | + "serviceType": ["chat"], |
| 28 | + "defaultTemperature": 0.95, |
| 29 | + "description": "百度 ERNIE 5.0 旗舰模型,128K 上下文,最大输出 65536 token" |
| 30 | + } |
| 31 | + }, |
| 32 | + { |
| 33 | + "id": "ernie-4.5-turbo-128k", |
| 34 | + "displayName": "文心 ERNIE 4.5 Turbo", |
| 35 | + "family": "ernie-4.5", |
| 36 | + "match": { "exact": ["ernie-4.5-turbo-128k"], "patterns": ["ernie-4.5-turbo-128k*"] }, |
| 37 | + "spec": { |
| 38 | + "contextWindow": 131072, |
| 39 | + "maxOutputTokens": 12288, |
| 40 | + "capabilities": ["chat", "code", "vision", "long_context", "fast"], |
| 41 | + "serviceType": ["chat"], |
| 42 | + "defaultTemperature": 0.8, |
| 43 | + "description": "百度高性价比长上下文模型,128K 窗口,最大输出 12288 token" |
| 44 | + } |
| 45 | + }, |
| 46 | + { |
| 47 | + "id": "ernie-4.5-turbo-20260402", |
| 48 | + "displayName": "文心 ERNIE 4.5 Turbo 20260402", |
| 49 | + "family": "ernie-4.5", |
| 50 | + "match": { "exact": ["ernie-4.5-turbo-20260402"] }, |
| 51 | + "spec": { |
| 52 | + "contextWindow": 131072, |
| 53 | + "maxOutputTokens": 12288, |
| 54 | + "capabilities": ["chat", "code", "vision", "long_context", "fast"], |
| 55 | + "serviceType": ["chat"], |
| 56 | + "defaultTemperature": 0.8, |
| 57 | + "description": "百度 ERNIE 4.5 Turbo 20260402 快照版,128K 上下文" |
| 58 | + } |
| 59 | + }, |
| 60 | + { |
| 61 | + "id": "ernie-x1.1", |
| 62 | + "displayName": "文心 ERNIE X1.1", |
| 63 | + "family": "ernie-x1", |
| 64 | + "match": { "exact": ["ernie-x1.1"], "patterns": ["ernie-x1*"] }, |
| 65 | + "spec": { |
| 66 | + "contextWindow": 65536, |
| 67 | + "maxOutputTokens": 65536, |
| 68 | + "capabilities": ["chat", "reasoning", "deep_thinking", "math", "code"], |
| 69 | + "serviceType": ["reasoning"], |
| 70 | + "defaultTemperature": null, |
| 71 | + "supportsReasoning": true, |
| 72 | + "description": "百度 ERNIE X1.1 深度思考推理模型,64K 上下文" |
| 73 | + } |
| 74 | + } |
| 75 | + ] |
| 76 | +} |
0 commit comments