From e43f95d4df053e7758d28ff53b9c5770df94e1ee Mon Sep 17 00:00:00 2001 From: kqlio67 Date: Tue, 15 Oct 2024 12:40:17 +0300 Subject: Updated(docs/async_client.md) --- docs/async_client.md | 5 ----- 1 file changed, 5 deletions(-) (limited to 'docs') diff --git a/docs/async_client.md b/docs/async_client.md index 34ee8018..a3f773fa 100644 --- a/docs/async_client.md +++ b/docs/async_client.md @@ -72,7 +72,6 @@ async def main(): print(response.choices[0].message.content) asyncio.run(main()) - ``` ### Streaming Completions @@ -97,7 +96,6 @@ async def main(): print(chunk.choices[0].delta.content or "", end="") asyncio.run(main()) - ``` In this example: @@ -130,7 +128,6 @@ async def main(): print(response.choices[0].message.content) asyncio.run(main()) - ``` ### Image Generation: @@ -152,7 +149,6 @@ async def main(): print(f"Generated image URL: {image_url}") asyncio.run(main()) - ``` #### Base64 as the response format @@ -208,7 +204,6 @@ async def main(): print(image_url) asyncio.run(main()) - ``` [Return to Home](/) -- cgit v1.2.3