Merge pull request #1486 from pursue-wind/main

fix: 使用deepseek r1-0528模型时,tools_call为空list,tools_call[0]报错
This commit is contained in:
hrz
2025-06-05 17:07:59 +08:00
committed by GitHub
+1 -1
View File
@@ -651,7 +651,7 @@ class ConnectionHandler:
# print("content_arguments", content_arguments)
tool_call_flag = True
if tools_call is not None:
if tools_call is not None and len(tools_call) > 0:
tool_call_flag = True
if tools_call[0].id is not None:
function_id = tools_call[0].id