We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d877b6d commit 0c90af6Copy full SHA for 0c90af6
README.md
@@ -228,7 +228,7 @@ List methods in the OpenAI API are paginated.
228
This library provides auto-paginating iterators with each list response, so you do not have to request successive pages manually:
229
230
```python
231
-import openai
+from openai import OpenAI
232
233
client = OpenAI()
234
@@ -246,7 +246,7 @@ Or, asynchronously:
246
247
248
import asyncio
249
+from openai import AsyncOpenAI
250
251
client = AsyncOpenAI()
252
0 commit comments