mirror of
https://github.com/langgenius/dify.git
synced 2026-05-05 18:08:07 +08:00
support custom output schema in tool node
This commit is contained in:
@ -58,6 +58,7 @@ const ToolItem: FC<Props> = ({
|
||||
tool_label: payload.label[language],
|
||||
title: payload.label[language],
|
||||
is_team_authorization: provider.is_team_authorization,
|
||||
output_schema: payload.output_schema,
|
||||
params,
|
||||
})
|
||||
}}
|
||||
|
||||
@ -27,4 +27,5 @@ export type ToolDefaultValue = {
|
||||
title: string
|
||||
is_team_authorization: boolean
|
||||
params: Record<string, any>
|
||||
output_schema: Record<string, any>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user