fix: custom tool input number fail (#6200)

Co-authored-by: jinqi.guo <jinqi.guo@ubtrobot.com>
This commit is contained in:
guogeer
2024-07-14 22:11:13 +08:00
committed by GitHub
parent 07add06c59
commit 4fdcb30ff8
2 changed files with 7 additions and 1 deletions

View File

@@ -238,7 +238,7 @@ class ApiTool(Tool):
return int(value)
elif property['type'] == 'number':
# check if it is a float
if '.' in value:
if '.' in str(value):
return float(value)
else:
return int(value)