summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorkqlio67 <kqlio67@users.noreply.github.com>2024-10-29 21:03:05 +0100
committerkqlio67 <kqlio67@users.noreply.github.com>2024-10-29 21:03:05 +0100
commite79c8b01f58d21502c962f38c804bf81196f89fb (patch)
treee8f0d3f94d7a8834d45173272bd1307c91ba06d4 /docs
parentUpdate (g4f/gui/server/api.py) (diff)
downloadgpt4free-e79c8b01f58d21502c962f38c804bf81196f89fb.tar
gpt4free-e79c8b01f58d21502c962f38c804bf81196f89fb.tar.gz
gpt4free-e79c8b01f58d21502c962f38c804bf81196f89fb.tar.bz2
gpt4free-e79c8b01f58d21502c962f38c804bf81196f89fb.tar.lz
gpt4free-e79c8b01f58d21502c962f38c804bf81196f89fb.tar.xz
gpt4free-e79c8b01f58d21502c962f38c804bf81196f89fb.tar.zst
gpt4free-e79c8b01f58d21502c962f38c804bf81196f89fb.zip
Diffstat (limited to 'docs')
-rw-r--r--docs/async_client.md4
-rw-r--r--docs/client.md7
-rw-r--r--docs/interference-api.md2
3 files changed, 4 insertions, 9 deletions
diff --git a/docs/async_client.md b/docs/async_client.md
index 357b0d86..0719a463 100644
--- a/docs/async_client.md
+++ b/docs/async_client.md
@@ -3,7 +3,7 @@ The G4F async client API is a powerful asynchronous interface for interacting wi
## Compatibility Note
-The G4F async client API is designed to be compatible with the OpenAI and Anthropic API, making it easy for developers familiar with OpenAI's or Anthropic's interface to transition to G4F.
+The G4F async client API is designed to be compatible with the OpenAI API, making it easy for developers familiar with OpenAI's interface to transition to G4F.
## Table of Contents
- [Introduction](#introduction)
@@ -57,7 +57,6 @@ client = Client(
**Here’s an improved example of creating chat completions:**
```python
response = await async_client.chat.completions.create(
- system="You are a helpful assistant.",
model="gpt-3.5-turbo",
messages=[
{
@@ -70,7 +69,6 @@ response = await async_client.chat.completions.create(
```
**This example:**
- - Sets a system message to define the assistant's role
- Asks a specific question `Say this is a test`
- Configures various parameters like temperature and max_tokens for more control over the output
- Disables streaming for a complete response
diff --git a/docs/client.md b/docs/client.md
index b4f351d3..388b2e4b 100644
--- a/docs/client.md
+++ b/docs/client.md
@@ -23,7 +23,7 @@
## Introduction
-Welcome to the G4F Client API, a cutting-edge tool for seamlessly integrating advanced AI capabilities into your Python applications. This guide is designed to facilitate your transition from using the OpenAI or Anthropic client to the G4F Client, offering enhanced features while maintaining compatibility with the existing OpenAI and Anthropic API.
+Welcome to the G4F Client API, a cutting-edge tool for seamlessly integrating advanced AI capabilities into your Python applications. This guide is designed to facilitate your transition from using the OpenAI client to the G4F Client, offering enhanced features while maintaining compatibility with the existing OpenAI API.
## Getting Started
### Switching to G4F Client
@@ -43,7 +43,7 @@ from g4f.client import Client as OpenAI
-The G4F Client preserves the same familiar API interface as OpenAI or Anthropic, ensuring a smooth transition process.
+The G4F Client preserves the same familiar API interface as OpenAI, ensuring a smooth transition process.
## Initializing the Client
To utilize the G4F Client, create a new instance. **Below is an example showcasing custom providers:**
@@ -62,7 +62,6 @@ client = Client(
**Here’s an improved example of creating chat completions:**
```python
response = client.chat.completions.create(
- system="You are a helpful assistant.",
model="gpt-3.5-turbo",
messages=[
{
@@ -75,7 +74,6 @@ response = client.chat.completions.create(
```
**This example:**
- - Sets a system message to define the assistant's role
- Asks a specific question `Say this is a test`
- Configures various parameters like temperature and max_tokens for more control over the output
- Disables streaming for a complete response
@@ -313,7 +311,6 @@ while True:
try:
# Get GPT's response
response = client.chat.completions.create(
- system="You are a helpful assistant.",
messages=messages,
model=g4f.models.default,
)
diff --git a/docs/interference-api.md b/docs/interference-api.md
index 1e51ba60..2e18e7b5 100644
--- a/docs/interference-api.md
+++ b/docs/interference-api.md
@@ -15,7 +15,7 @@
## Introduction
-The G4F Interference API is a powerful tool that allows you to serve other OpenAI integrations using G4F (Gpt4free). It acts as a proxy, translating requests intended for the OpenAI and Anthropic API into requests compatible with G4F providers. This guide will walk you through the process of setting up, running, and using the Interference API effectively.
+The G4F Interference API is a powerful tool that allows you to serve other OpenAI integrations using G4F (Gpt4free). It acts as a proxy, translating requests intended for the OpenAI API into requests compatible with G4F providers. This guide will walk you through the process of setting up, running, and using the Interference API effectively.
## Running the Interference API