mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 03:32:23 +08:00
Merge 05ed7e9999
into 51db59622c
This commit is contained in:
commit
aaa50f3df5
|
@ -145,6 +145,7 @@ class ToolParameter(BaseModel):
|
|||
SECRET_INPUT = "secret-input"
|
||||
FILE = "file"
|
||||
FILES = "files"
|
||||
OBJECT = "object"
|
||||
|
||||
# deprecated, should not use.
|
||||
SYSTEM_FILES = "systme-files"
|
||||
|
|
|
@ -170,6 +170,8 @@ class ApiBasedToolSchemaParser:
|
|||
return ToolParameter.ToolParameterType.NUMBER
|
||||
elif typ == "boolean":
|
||||
return ToolParameter.ToolParameterType.BOOLEAN
|
||||
elif typ == "object":
|
||||
return ToolParameter.ToolParameterType.OBJECT
|
||||
elif typ == "string":
|
||||
return ToolParameter.ToolParameterType.STRING
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user