瀏覽代碼

Merge pull request #5777 from smonux/dev

Fix: sanitize function calling json
Timothy Jaeryang Baek 7 月之前
父節點
當前提交
9636913de0
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      backend/open_webui/main.py

+ 1 - 0
backend/open_webui/main.py

@@ -448,6 +448,7 @@ async def chat_completion_tools_handler(
         if not content:
         if not content:
             return body, {}
             return body, {}
 
 
+        content = content[content.find("{") : content.rfind("}") + 1]
         result = json.loads(content)
         result = json.loads(content)
 
 
         tool_function_name = result.get("name", None)
         tool_function_name = result.get("name", None)