From fbfeb67db6f5dfcad4b6da21191ca12454d6a009 Mon Sep 17 00:00:00 2001 From: wxg0103 <727495428@qq.com> Date: Mon, 25 Aug 2025 10:51:37 +0800 Subject: [PATCH] chore: update file hashes for community and xpack fix: correct parameter name in KimiChatModel instantiation --- apps/models_provider/impl/kimi_model_provider/model/llm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/models_provider/impl/kimi_model_provider/model/llm.py b/apps/models_provider/impl/kimi_model_provider/model/llm.py index e5ca5ed84..1fd980480 100644 --- a/apps/models_provider/impl/kimi_model_provider/model/llm.py +++ b/apps/models_provider/impl/kimi_model_provider/model/llm.py @@ -25,7 +25,7 @@ class KimiChatModel(MaxKBBaseModel, BaseChatOpenAI): kimi_chat_open_ai = KimiChatModel( openai_api_base=model_credential['api_base'], openai_api_key=model_credential['api_key'], - model_name=model_name, + model=model_name, extra_body=optional_params, ) return kimi_chat_open_ai