We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d95cbc7 commit 2d43924Copy full SHA for 2d43924
tests/models/test_openai.py
@@ -2909,7 +2909,9 @@ async def test_openai_response_prefix_stream(allow_model_requests: None):
2909
agent = Agent(m)
2910
2911
event_parts: list[Any] = []
2912
- async with agent.iter(user_prompt='What is the name of color #FF0000', response_prefix="It's name is ") as agent_run:
+ async with agent.iter(
2913
+ user_prompt='What is the name of color #FF0000', response_prefix="It's name is "
2914
+ ) as agent_run:
2915
async for node in agent_run:
2916
if Agent.is_model_request_node(node):
2917
async with node.stream(agent_run.ctx) as request_stream:
0 commit comments