From 32f84391433d8db547fbe3137014297ab54119d1 Mon Sep 17 00:00:00 2001 From: Yingchun Lai Date: Mon, 9 Dec 2024 17:59:20 +0800 Subject: [PATCH] fix: add the missing abab6.5t-chat model of Minimax (#11484) --- api/core/model_runtime/model_providers/minimax/llm/llm.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api/core/model_runtime/model_providers/minimax/llm/llm.py b/api/core/model_runtime/model_providers/minimax/llm/llm.py index ce7c00f7dab84a..ca9b243c9262b3 100644 --- a/api/core/model_runtime/model_providers/minimax/llm/llm.py +++ b/api/core/model_runtime/model_providers/minimax/llm/llm.py @@ -35,6 +35,7 @@ class MinimaxLargeLanguageModel(LargeLanguageModel): model_apis = { "abab7-chat-preview": MinimaxChatCompletionPro, + "abab6.5t-chat": MinimaxChatCompletionPro, "abab6.5s-chat": MinimaxChatCompletionPro, "abab6.5-chat": MinimaxChatCompletionPro, "abab6-chat": MinimaxChatCompletionPro,