Commit 478f3c08

Stainless Bot <107565488+stainless-bot@users.noreply.github.com>
2023-12-08 08:49:21
docs: fix typo in example (#950)
1 parent e967f5a
Changed files (1)
README.md
@@ -109,7 +109,7 @@ from openai import AsyncOpenAI
 client = AsyncOpenAI()
 
 stream = await client.chat.completions.create(
-    prompt="Say this is a test",
+    model="gpt-4",
     messages=[{"role": "user", "content": "Say this is a test"}],
     stream=True,
 )