From 360851366fb10f71daed55847a66e16d0107b6a4 Mon Sep 17 00:00:00 2001 From: ideoutrea Date: Fri, 6 Feb 2026 17:49:54 +0800 Subject: [PATCH] Support ERNIE-5.0-Thinking-Preview --- src/agents/models-config.providers.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/agents/models-config.providers.ts b/src/agents/models-config.providers.ts index 7e85723bd..6c9adca96 100644 --- a/src/agents/models-config.providers.ts +++ b/src/agents/models-config.providers.ts @@ -423,6 +423,15 @@ export function buildQianfanProvider(): ProviderConfig { contextWindow: QIANFAN_DEFAULT_CONTEXT_WINDOW, maxTokens: QIANFAN_DEFAULT_MAX_TOKENS, }, + { + id: "ernie-5.0-thinking-preview", + name: "ERNIE-5.0-Thinking-Preview", + reasoning: true, + input: ["text", "image"], + cost: QIANFAN_DEFAULT_COST, + contextWindow: 119000, + maxTokens: 64000, + }, ], }; }