From e0bac9adc1c3c2f4b32ec6a69f67952da741104d Mon Sep 17 00:00:00 2001 From: ateamofantsintheirprime <71710656+ateamofantsintheirprime@users.noreply.github.com> Date: Wed, 29 Apr 2026 11:50:36 +1000 Subject: [PATCH] Fix typo in comment for WS event handler --- src/agents/realtime/openai_realtime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agents/realtime/openai_realtime.py b/src/agents/realtime/openai_realtime.py index 9ce1daf5c1..fdad4cd854 100644 --- a/src/agents/realtime/openai_realtime.py +++ b/src/agents/realtime/openai_realtime.py @@ -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",