Browse Source

Merge branch 'feature/xueyiming/2025-10-15-update-deepseek' of Server/rag_server into master

xueyiming 1 day ago
parent
commit
855658c71c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      applications/utils/chat/rag_chat_agent.py

+ 1 - 1
applications/utils/chat/rag_chat_agent.py

@@ -141,7 +141,7 @@ class RAGChatAgent:
     async def make_decision(self, query, chat_res, search_res):
         prompt = self.make_decision_prompt(query, chat_res, search_res)
         response = await fetch_deepseek_completion(
-            model="DeepSeek-R1", prompt=prompt, output_type="json"
+            model="DeepSeek-V3", prompt=prompt, output_type="json"
         )
         return response