refactor(workflow): update output schema handling in tool and data source nodes for improved integration with plugin info

This commit is contained in:
twwu
2025-08-26 16:48:18 +08:00
parent 1f5fd13359
commit bdcd9ad9cb
19 changed files with 219 additions and 105 deletions

View File

@ -71,7 +71,7 @@ export const useConfig = (id: string, dataSourceList?: any[]) => {
const res: any[] = []
if (!output_schema || !output_schema.properties)
return []
return res
Object.keys(output_schema.properties).forEach((outputKey) => {
const output = output_schema.properties[outputKey]