fix: updated Run Flow to not group outputs (#8806)

Changed run flow to not group outputs
This commit is contained in:
Lucas Oliveira 2025-07-01 15:56:52 -03:00 committed by GitHub
commit 514b31282e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -52,6 +52,7 @@ class RunFlowBaseComponent(Component):
display_name="Flow Data Output",
method="data_output",
hidden=True,
group_outputs=True,
tool_mode=False, # This output is not intended to be used as a tool, so tool_mode is disabled.
),
Output(
@ -59,9 +60,12 @@ class RunFlowBaseComponent(Component):
display_name="Flow Dataframe Output",
method="dataframe_output",
hidden=True,
group_outputs=True,
tool_mode=False, # This output is not intended to be used as a tool, so tool_mode is disabled.
),
Output(name="flow_outputs_message", display_name="Flow Message Output", method="message_output"),
Output(
name="flow_outputs_message", group_outputs=True, display_name="Flow Message Output", method="message_output"
),
]
default_keys = ["code", "_type", "flow_name_selected", "session_id"]
FLOW_INPUTS: list[dotdict] = []