-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Closed
Labels
questionQuestion about using the SDKQuestion about using the SDK
Description
Question
I am using
[[package]]
name = "openai-agents"
version = "0.2.8"
description = "OpenAI Agents SDK"
with Azure Open AI Gpt-5 Model.
This is my code:
async for event in result.stream_events():
if event.type == "raw_response_event":
if isinstance(event.data, ResponseTextDeltaEvent):
print(event.data.delta)
# When the agent updates, print that
elif isinstance(event.data, ResponseReasoningSummaryPartAddedEvent):
print(event.data)
elif isinstance(event.data, ResponseReasoningSummaryTextDeltaEvent):
print(event.data)
I can not catch any events from ResponseReasoningSummaryPartAddedEvent and ResponseReasoningSummaryTextDeltaEvent to stream ChainOfThoughts.
My settings:
reasoning_effort: "medium"
summary: "detailed"
verbosity: "medium"
Thank you.
Metadata
Metadata
Assignees
Labels
questionQuestion about using the SDKQuestion about using the SDK