summaryrefslogtreecommitdiffstats
path: root/docs/client.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/client.md')
-rw-r--r--docs/client.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/client.md b/docs/client.md
index 388b2e4b..da45d7fd 100644
--- a/docs/client.md
+++ b/docs/client.md
@@ -62,7 +62,7 @@ client = Client(
**Here’s an improved example of creating chat completions:**
```python
response = client.chat.completions.create(
- model="gpt-3.5-turbo",
+ model="gpt-4o-mini",
messages=[
{
"role": "user",
@@ -104,7 +104,7 @@ from g4f.client import Client
client = Client()
response = client.chat.completions.create(
- model="gpt-3.5-turbo",
+ model="gpt-4o-mini",
messages=[
{
"role": "user",