feat: add support for file outputs in LLMNode, including auto-collection and deduplication

This commit is contained in:
Novice
2026-03-11 16:30:23 +08:00
parent f0c82f28cb
commit 8513fa2897
5 changed files with 22 additions and 1 deletions

View File

@ -182,6 +182,10 @@ export const LLM_OUTPUT_STRUCT: Var[] = [
variable: 'usage',
type: VarType.object,
},
{
variable: 'files',
type: VarType.arrayFile,
},
]
export const KNOWLEDGE_RETRIEVAL_OUTPUT_STRUCT: Var[] = [