Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/agents/realtime/openai_realtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -1010,7 +1010,7 @@ def _error_matches_pending_response_create(self, error: Any) -> bool:

async def _handle_ws_event(self, event: dict[str, Any]):
await self._emit_event(RealtimeModelRawServerEvent(data=event))
# The public interface definedo on this Agents SDK side (e.g., RealtimeMessageItem)
# The public interface defined on this Agents SDK side (e.g., RealtimeMessageItem)
# must be the same even after the GA migration, so this part does the conversion
if isinstance(event, dict) and event.get("type") in (
"response.output_item.added",
Expand Down