mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-08-23 14:22:51 +08:00
improve error message
Former-commit-id: 36611d5c098d444454f0e41a15664f14c2975547
This commit is contained in:
parent
daa1309466
commit
545ca7db99
@ -113,7 +113,7 @@ class FunctionFormatter(Formatter):
|
||||
functions.append((tool_call["name"], json.dumps(tool_call["arguments"], ensure_ascii=False)))
|
||||
|
||||
except json.JSONDecodeError:
|
||||
raise RuntimeError("Not Valid functions Message {}".format(str([content])))
|
||||
raise RuntimeError("Invalid JSON format in function message: {}".format(content)
|
||||
|
||||
elements = []
|
||||
for name, arguments in functions:
|
||||
@ -141,7 +141,7 @@ class ToolFormatter(Formatter):
|
||||
tools = json.loads(content)
|
||||
return [self.tool_utils.tool_formatter(tools) if len(tools) != 0 else ""]
|
||||
except json.JSONDecodeError:
|
||||
raise RuntimeError("Not Valid functions Message {}".format(str([content])))
|
||||
raise RuntimeError("Invalid JSON format in tool description: {}".format(content)
|
||||
|
||||
|
||||
@override
|
||||
|
Loading…
x
Reference in New Issue
Block a user