fix anthropic bug (#2161)
Browse files### 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 <[email protected]>
- rag/llm/__init__.py +1 -1
rag/llm/__init__.py
CHANGED
@@ -106,7 +106,7 @@ ChatModel = {
|
|
106 |
"Tencent Hunyuan": HunyuanChat,
|
107 |
"XunFei Spark": SparkChat,
|
108 |
"BaiduYiyan": BaiduYiyanChat,
|
109 |
-
"Anthropic":
|
110 |
}
|
111 |
|
112 |
|
|
|
106 |
"Tencent Hunyuan": HunyuanChat,
|
107 |
"XunFei Spark": SparkChat,
|
108 |
"BaiduYiyan": BaiduYiyanChat,
|
109 |
+
"Anthropic": AnthropicChat,
|
110 |
}
|
111 |
|
112 |
|