From a164bf89fcc2f77327e51a733d7e0dc988636e89 Mon Sep 17 00:00:00 2001 From: Aksh Parekh Date: Tue, 14 Oct 2025 17:40:58 -0700 Subject: [PATCH] Update sequential_workflow.md --- docs/swarms/structs/sequential_workflow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/swarms/structs/sequential_workflow.md b/docs/swarms/structs/sequential_workflow.md index e0372f3c..f59101a4 100644 --- a/docs/swarms/structs/sequential_workflow.md +++ b/docs/swarms/structs/sequential_workflow.md @@ -288,7 +288,7 @@ The SequentialWorkflow with sequential awareness represents a significant advanc The SequentialWorkflow now includes a powerful **streaming callback** feature that allows you to receive and process tokens in real-time as the workflow executes, helping you monitor execution progress from agents and create interactive chat applications/live demos. This enables real-time streaming of agent responses, making it ideal for interactive applications and live monitoring of workflow progress. -###Parameter +##**Parameter** ## `streaming_callback: Optional[Callable[[str, str, bool], None]] = None` - The function should accept a single string parameter (the token) and return None. Defaults to `None`.