You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -226,7 +226,7 @@ async def main():
226
226
asyncio.run(main())
227
227
```
228
228
229
-
## Realtime API beta
229
+
## Realtime API
230
230
231
231
The Realtime API enables you to build low-latency, multi-modal conversational experiences. It currently supports text and audio as both input and output, as well as [function calling](https://platform.openai.com/docs/guides/function-calling) through a WebSocket connection.
232
232
@@ -243,7 +243,7 @@ from openai import AsyncOpenAI
243
243
asyncdefmain():
244
244
client = AsyncOpenAI()
245
245
246
-
asyncwith client.beta.realtime.connect(model="gpt-4o-realtime-preview") as connection:
246
+
asyncwith client.realtime.connect(model="gpt-realtime") as connection:
0 commit comments