mirror of https://github.com/langgenius/dify.git
minor fix: fix error messages (#23081)
This commit is contained in:
parent
84aa38586f
commit
63b6026e6e
|
|
@ -55,7 +55,7 @@ class ToolNodeData(BaseNodeData, ToolEntity):
|
|||
if not isinstance(val, str):
|
||||
raise ValueError("value must be a list of strings")
|
||||
elif typ == "constant" and not isinstance(value, str | int | float | bool | dict):
|
||||
raise ValueError("value must be a string, int, float, or bool")
|
||||
raise ValueError("value must be a string, int, float, bool or dict")
|
||||
return typ
|
||||
|
||||
tool_parameters: dict[str, ToolInput]
|
||||
|
|
|
|||
Loading…
Reference in New Issue