From bd7af0dda574f4d124e8682a2d1a78faa1076240 Mon Sep 17 00:00:00 2001 From: Jiwon Kim Date: Thu, 18 Dec 2025 21:32:09 -0800 Subject: [PATCH] fix args docstring for stream_agent_response --- chatkit/agents.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/chatkit/agents.py b/chatkit/agents.py index f1f79dd..fbb4446 100644 --- a/chatkit/agents.py +++ b/chatkit/agents.py @@ -444,10 +444,8 @@ async def stream_agent_response( Args: context: The AgentContext to use for the stream. result: The RunResultStreaming to convert. - image_generation_stream_converter: Controls how streamed image generation output - is converted into URLs and progress updates. The default converter stores the - generated base64 image and assigns a progress value of 0 to all partial image - updates. + converter: Defines overridable methods for adapting streamed data (such as image + generation results and partial updates) into the forms expected by ChatKit. Returns: An async iterator that yields thread stream events representing the run result.