From 6414f715fa95847afe67e57388b56c617cc0254e Mon Sep 17 00:00:00 2001 From: Aaron Farntrog Date: Mon, 8 Sep 2025 14:53:03 -0400 Subject: [PATCH] docs: cleanup docs so the yields section renders correctly --- src/strands/agent/agent.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/strands/agent/agent.py b/src/strands/agent/agent.py index 1e64f5adb..05e15a5b1 100644 --- a/src/strands/agent/agent.py +++ b/src/strands/agent/agent.py @@ -547,12 +547,12 @@ async def stream_async( Yields: An async iterator that yields events. Each event is a dictionary containing - information about the current state of processing, such as: + information about the current state of processing, such as: - - data: Text content being generated - - complete: Whether this is the final chunk - - current_tool_use: Information about tools being executed - - And other event data provided by the callback handler + - data: Text content being generated + - complete: Whether this is the final chunk + - current_tool_use: Information about tools being executed + - And other event data provided by the callback handler Raises: Exception: Any exceptions from the agent invocation will be propagated to the caller.