Skip to content

Commit 472cd44

Browse files
docs: fix typo in readme (#904)
1 parent e025e6b commit 472cd44

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
@@ -96,7 +96,7 @@ stream = client.chat.completions.create(
9696
)
9797
for chunk in stream:
9898
if chunk.choices[0].delta.content is not None:
99-
print(part.choices[0].delta.content)
99+
print(chunk.choices[0].delta.content)
100100
```
101101

102102
The async client uses the exact same interface.
@@ -113,7 +113,7 @@ stream = await client.chat.completions.create(
113113
)
114114
async for chunk in stream:
115115
if chunk.choices[0].delta.content is not None:
116-
print(part.choices[0].delta.content)
116+
print(chunk.choices[0].delta.content)
117117
```
118118

119119
## Module-level client

0 commit comments

Comments
 (0)