Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 0c90af6

Browse files
stainless-app[bot]stainless-bot
authored andcommittedJul 22, 2024·
docs(readme): fix example snippet imports (#1569)
1 parent d877b6d commit 0c90af6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ List methods in the OpenAI API are paginated.
228228
This library provides auto-paginating iterators with each list response, so you do not have to request successive pages manually:
229229

230230
```python
231-
import openai
231+
from openai import OpenAI
232232

233233
client = OpenAI()
234234

@@ -246,7 +246,7 @@ Or, asynchronously:
246246

247247
```python
248248
import asyncio
249-
import openai
249+
from openai import AsyncOpenAI
250250

251251
client = AsyncOpenAI()
252252

0 commit comments

Comments
 (0)
Please sign in to comment.