diff options
author | kqlio67 <kqlio67@users.noreply.github.com> | 2024-11-12 07:44:48 +0100 |
---|---|---|
committer | kqlio67 <kqlio67@users.noreply.github.com> | 2024-11-12 07:44:48 +0100 |
commit | 21a26f68826778afa7ab932ef4cd488b422fdc68 (patch) | |
tree | baac655d7744f9c872a7968ac94583297fa4bc10 /docs/client.md | |
parent | Update (g4f/Provider/GizAI.py) (diff) | |
download | gpt4free-21a26f68826778afa7ab932ef4cd488b422fdc68.tar gpt4free-21a26f68826778afa7ab932ef4cd488b422fdc68.tar.gz gpt4free-21a26f68826778afa7ab932ef4cd488b422fdc68.tar.bz2 gpt4free-21a26f68826778afa7ab932ef4cd488b422fdc68.tar.lz gpt4free-21a26f68826778afa7ab932ef4cd488b422fdc68.tar.xz gpt4free-21a26f68826778afa7ab932ef4cd488b422fdc68.tar.zst gpt4free-21a26f68826778afa7ab932ef4cd488b422fdc68.zip |
Diffstat (limited to '')
-rw-r--r-- | docs/client.md | 4 |
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", |