From dec9d0c97b702b6bcf9c71f5bdd6172bb5718354 Mon Sep 17 00:00:00 2001 From: Adel Basli Date: Mon, 11 Nov 2024 11:17:26 +0100 Subject: [PATCH] docs(readme): add missing asyncio import (#1858) * fix missing import * reorder imports --------- Co-authored-by: Robert Craigie --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index bc334e7e07..47504b9137 100644 --- a/README.md +++ b/README.md @@ -196,6 +196,7 @@ for chunk in stream: The async client uses the exact same interface. ```python +import asyncio from openai import AsyncOpenAI client = AsyncOpenAI()