summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH Lohaus <hlohaus@users.noreply.github.com>2024-02-13 10:45:06 +0100
committerGitHub <noreply@github.com>2024-02-13 10:45:06 +0100
commit58b8372d90b5719d042d7da5620822c04fb7225c (patch)
treef9a4740326eb63d4a9b464436c6806503acbeb4a
parentMerge pull request #1582 from Eikosa/patch-4 (diff)
downloadgpt4free-58b8372d90b5719d042d7da5620822c04fb7225c.tar
gpt4free-58b8372d90b5719d042d7da5620822c04fb7225c.tar.gz
gpt4free-58b8372d90b5719d042d7da5620822c04fb7225c.tar.bz2
gpt4free-58b8372d90b5719d042d7da5620822c04fb7225c.tar.lz
gpt4free-58b8372d90b5719d042d7da5620822c04fb7225c.tar.xz
gpt4free-58b8372d90b5719d042d7da5620822c04fb7225c.tar.zst
gpt4free-58b8372d90b5719d042d7da5620822c04fb7225c.zip
-rw-r--r--docs/client.md74
1 files changed, 46 insertions, 28 deletions
diff --git a/docs/client.md b/docs/client.md
index 247979ce..ffbad9de 100644
--- a/docs/client.md
+++ b/docs/client.md
@@ -1,39 +1,48 @@
-### Client API
-##### from g4f (beta)
+```
+### G4F Client API Documentation (Beta Version)
+
+#### Introduction
+
+The G4F Client API introduces a new way to integrate advanced AI functionalities into your Python applications. This guide will help you transition from using the OpenAI client to the new G4F Client, offering compatibility with the existing OpenAI API alongside additional features.
+
+#### Getting Started
-#### Start
-This new client could:
+**Switching to G4F Client:**
+Replace the OpenAI client import statement in your Python code as follows:
+
+Old Import:
```python
-from g4f.client import Client
+from openai import OpenAI
```
-replaces this:
+New Import:
```python
-from openai import OpenAI
+from g4f.client import Client
```
-in your Python Code.
-New client have the same API as OpenAI.
+The G4F Client maintains the same API interface as OpenAI, ensuring a seamless transition.
-#### Client
+#### Initializing the Client
-Create the client with custom providers:
+To use the G4F Client, create an instance with customized providers:
```python
from g4f.client import Client
-from g4f.Provider import BingCreateImages, OpenaiChat, Gemini
+from g4f.providers import BingCreateImages, OpenaiChat, Gemini
client = Client(
- provider=OpenaiChat,
+ text_provider=OpenaiChat,
image_provider=Gemini,
proxies=None
)
```
-#### Examples
+#### Usage Examples
+
+**Text Completions:**
-Use the ChatCompletions:
+You can use the `ChatCompletions` endpoint to generate text completions as follows:
```python
stream = client.chat.completions.create(
@@ -42,35 +51,44 @@ stream = client.chat.completions.create(
stream=True,
)
for chunk in stream:
- if chunk.choices[0].delta.content is not None:
+ if chunk.choices[0].delta.content:
print(chunk.choices[0].delta.content, end="")
```
-Or use it for creating a image:
+**Image Generation:**
+
+Generate images using a specified prompt:
+
```python
response = client.images.generate(
- model="dall-e-3",
- prompt="a white siamese cat",
- ...
+ model="dall-e-3",
+ prompt="a white siamese cat",
+ ...
)
image_url = response.data[0].url
```
-Also this works with the client:
+**Creating Image Variations:**
+
+Create variations of an existing image:
+
```python
response = client.images.create_variation(
- image=open("cat.jpg", "rb")
- model="bing",
- ...
+ image=open("cat.jpg", "rb"),
+ model="bing",
+ ...
)
image_url = response.data[0].url
```
-Orginal / Variant:
+#### Visual Examples
+
+Original / Variant:
-[![Image with cat](/docs/cat.jpeg)](/docs/client.md)
-[![Image with cat](/docs/cat.webp)](/docs/client.md)
+[![Original Image](/docs/cat.jpeg)](/docs/client.md)
+[![Variant Image](/docs/cat.webp)](/docs/client.md)
-[to Home](/docs/client.md)
+[Return to Documentation Home](/)
+``` \ No newline at end of file