fix(tools): remove the undefined variable parameter_type (#9908)

This commit is contained in:
zhuhao 2024-10-27 11:56:29 +08:00 committed by GitHub
parent 22776f24ab
commit 8bb5b943d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -204,7 +204,7 @@ class ToolParameter(BaseModel):
return str(value)
except Exception:
raise ValueError(f"The tool parameter value {value} is not in correct type of {parameter_type}.")
raise ValueError(f"The tool parameter value {value} is not in correct type.")
class ToolParameterForm(Enum):
SCHEMA = "schema" # should be set while adding tool