diff --git a/.changeset/popular-pears-repeat.md b/.changeset/popular-pears-repeat.md
new file mode 100644
index 0000000000000000000000000000000000000000..244073988e9fd96a01c97f5b7759fa4055d5a89f
--- /dev/null
+++ b/.changeset/popular-pears-repeat.md
@@ -0,0 +1,5 @@
+---
+"create-llama": patch
+---
+
+Fix the streaming issue to prevent the UI from hanging.
diff --git a/templates/components/agents/python/blog/app/agents/workflow.py b/templates/components/agents/python/blog/app/agents/workflow.py
index c7bfbe51e6370b0c1405afd4713ec5dfdfe8c275..50097a1a1a904727647784ef4096c7f0da79274b 100644
--- a/templates/components/agents/python/blog/app/agents/workflow.py
+++ b/templates/components/agents/python/blog/app/agents/workflow.py
@@ -238,7 +238,9 @@ class BlogPostWorkflow(Workflow):
         publisher: FunctionCallingAgent,
     ) -> StopEvent:
         try:
-            result: AgentRunResult = await self.run_agent(ctx, publisher, ev.input)
+            result: AgentRunResult = await self.run_agent(
+                ctx, publisher, ev.input, streaming=ctx.data["streaming"]
+            )
             return StopEvent(result=result)
         except Exception as e:
             ctx.write_event_to_stream(
diff --git a/templates/components/agents/python/financial_report/app/agents/workflow.py b/templates/components/agents/python/financial_report/app/agents/workflow.py
index d995bab2eae5310fd2eb99f764968912c32c88be..1c77581904c6f74ebbaa093540fd041dff5eab91 100644
--- a/templates/components/agents/python/financial_report/app/agents/workflow.py
+++ b/templates/components/agents/python/financial_report/app/agents/workflow.py
@@ -148,7 +148,9 @@ class FinancialReportWorkflow(Workflow):
         self, ctx: Context, ev: ReportEvent, reporter: FunctionCallingAgent
     ) -> StopEvent:
         try:
-            result: AgentRunResult = await self.run_agent(ctx, reporter, ev.input)
+            result: AgentRunResult = await self.run_agent(
+                ctx, reporter, ev.input, streaming=ctx.data["streaming"]
+            )
             return StopEvent(result=result)
         except Exception as e:
             ctx.write_event_to_stream(