From f772a3acb17ace9088b7728640fe243b3419b7a2 Mon Sep 17 00:00:00 2001 From: hjlarry Date: Tue, 3 Jun 2025 16:06:54 +0800 Subject: [PATCH] variable aggregator with group and file raise exception --- api/core/workflow/nodes/variable_aggregator/entities.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/api/core/workflow/nodes/variable_aggregator/entities.py b/api/core/workflow/nodes/variable_aggregator/entities.py index 9e58f5e944..3484a819e7 100644 --- a/api/core/workflow/nodes/variable_aggregator/entities.py +++ b/api/core/workflow/nodes/variable_aggregator/entities.py @@ -17,7 +17,9 @@ class AdvancedSettings(BaseModel): Group. """ - output_type: Literal["string", "number", "object", "array[string]", "array[number]", "array[object]"] + output_type: Literal[ + "string", "number", "object", "file", "array[string]", "array[number]", "array[object]", "array[file]" + ] variables: list[list[str]] group_name: str