From 69bbf8e9c505d582f57c897411563d849d8467d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E8=85=BE?= <101850389+hangters@users.noreply.github.com> Date: Thu, 29 Aug 2024 17:13:58 +0800 Subject: [PATCH] fix anthropic bug (#2161) ### What problem does this PR solve? #2159 fix anthropic bug ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) Co-authored-by: Zhedong Cen --- rag/llm/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rag/llm/__init__.py b/rag/llm/__init__.py index b503b1762..54bfc67ff 100644 --- a/rag/llm/__init__.py +++ b/rag/llm/__init__.py @@ -106,7 +106,7 @@ ChatModel = { "Tencent Hunyuan": HunyuanChat, "XunFei Spark": SparkChat, "BaiduYiyan": BaiduYiyanChat, - "Anthropic": VoyageChat, + "Anthropic": AnthropicChat, }