From ed7bea060fb527a629fd9176307c5c69187d55e5 Mon Sep 17 00:00:00 2001 From: Yongteng Lei Date: Wed, 16 Jul 2025 13:23:04 +0800 Subject: [PATCH] Feat: add Kimi model series support (#8866) ### What problem does this PR solve? Add Kimi model series support. ### Type of change - [x] New Feature (non-breaking change which adds functionality) --- conf/llm_factories.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/conf/llm_factories.json b/conf/llm_factories.json index 9b40e42ec..6a0a59581 100644 --- a/conf/llm_factories.json +++ b/conf/llm_factories.json @@ -581,6 +581,34 @@ "tags": "LLM,TEXT EMBEDDING", "status": "1", "llm": [ + { + "llm_name": "kimi-k2-0711-preview", + "tags": "LLM,CHAT,128k", + "max_tokens": 131072, + "model_type": "chat", + "is_tools": true + }, + { + "llm_name": "kimi-latest-8k", + "tags": "LLM,CHAT,8k", + "max_tokens": 8192, + "model_type": "chat", + "is_tools": true + }, + { + "llm_name": "kimi-latest-32k", + "tags": "LLM,CHAT,32k", + "max_tokens": 32768, + "model_type": "chat", + "is_tools": true + }, + { + "llm_name": "kimi-latest-128k", + "tags": "LLM,CHAT,128k", + "max_tokens": 131072, + "model_type": "chat", + "is_tools": true + }, { "llm_name": "moonshot-v1-8k", "tags": "LLM,CHAT,",