summaryrefslogtreecommitdiffstats
path: root/docs/async_client.md
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2024-05-20 16:22:10 +0200
committerGitHub <noreply@github.com>2024-05-20 16:22:10 +0200
commite4b3b2692ed79b598557fa7cdff4983f75348db1 (patch)
tree40ec18570055263fd8e4ed25cc08940146deb615 /docs/async_client.md
parentMerge pull request #1985 from anonymousx97/patch-1 (diff)
parentImprove async client readme, Fix print styling, Add image api example (diff)
downloadgpt4free-e4b3b2692ed79b598557fa7cdff4983f75348db1.tar
gpt4free-e4b3b2692ed79b598557fa7cdff4983f75348db1.tar.gz
gpt4free-e4b3b2692ed79b598557fa7cdff4983f75348db1.tar.bz2
gpt4free-e4b3b2692ed79b598557fa7cdff4983f75348db1.tar.lz
gpt4free-e4b3b2692ed79b598557fa7cdff4983f75348db1.tar.xz
gpt4free-e4b3b2692ed79b598557fa7cdff4983f75348db1.tar.zst
gpt4free-e4b3b2692ed79b598557fa7cdff4983f75348db1.zip
Diffstat (limited to 'docs/async_client.md')
-rw-r--r--docs/async_client.md43
1 files changed, 39 insertions, 4 deletions
diff --git a/docs/async_client.md b/docs/async_client.md
index 4827d11b..ad08302c 100644
--- a/docs/async_client.md
+++ b/docs/async_client.md
@@ -9,15 +9,39 @@ Designed to maintain compatibility with the existing OpenAI API, the G4F AsyncCl
The G4F AsyncClient API offers several key features:
- **Custom Providers:** The G4F Client API allows you to use custom providers. This feature enhances the flexibility of the API, enabling it to cater to a wide range of use cases.
-
- **ChatCompletion Interface:** The G4F package provides an interface for interacting with chat models through the ChatCompletion class. This class provides methods for creating both streaming and non-streaming responses.
-
- **Streaming Responses:** The ChatCompletion.create method can return a response iteratively as and when they are received if the stream parameter is set to True.
-
- **Non-Streaming Responses:** The ChatCompletion.create method can also generate non-streaming responses.
+- **Image Generation and Vision Models:** The G4F Client API also supports image generation and vision models, expanding its utility beyond text-based interactions.
+
+## Initializing the Client
+
+To utilize the G4F AsyncClient, create a new instance. Below is an example showcasing custom providers:
+
+```python
+from g4f.client import AsyncClient
+from g4f.Provider import BingCreateImages, OpenaiChat, Gemini
-- **Image Generation and Vision Models:** The G4F Client API also supports image generation and vision models, expanding its utility beyond text-based interactions.
+client = AsyncClient(
+ provider=OpenaiChat,
+ image_provider=Gemini,
+ ...
+)
+```
+
+## Configuration
+You can set an "api_key" for your provider in the client. You also have the option to define a proxy for all outgoing requests:
+
+```python
+from g4f.client import AsyncClient
+
+client = AsyncClient(
+ api_key="...",
+ proxies="http://user:pass@host",
+ ...
+)
+```
## Using AsyncClient
@@ -62,6 +86,17 @@ response = await client.images.generate(
image_url = response.data[0].url
```
+#### Base64 as the response format
+
+```python
+response = await client.images.generate(
+ prompt="a cool cat",
+ response_format="b64_json"
+)
+
+base64_text = response.data[0].b64_json
+```
+
### Example usage with asyncio.gather
Start two tasks at the same time: