diff options
author | kqlio67 <kqlio67@users.noreply.github.com> | 2024-10-15 14:08:16 +0200 |
---|---|---|
committer | kqlio67 <kqlio67@users.noreply.github.com> | 2024-10-15 14:08:16 +0200 |
commit | 2bcb45bfbdd4abfda2965025b2419c47e78b9dc0 (patch) | |
tree | d4f7304a3251ddfbde42114188d41bf96491cc18 | |
parent | refactor(g4f/api/__init__.py): use asynchronous methods in Client (diff) | |
download | gpt4free-2bcb45bfbdd4abfda2965025b2419c47e78b9dc0.tar gpt4free-2bcb45bfbdd4abfda2965025b2419c47e78b9dc0.tar.gz gpt4free-2bcb45bfbdd4abfda2965025b2419c47e78b9dc0.tar.bz2 gpt4free-2bcb45bfbdd4abfda2965025b2419c47e78b9dc0.tar.lz gpt4free-2bcb45bfbdd4abfda2965025b2419c47e78b9dc0.tar.xz gpt4free-2bcb45bfbdd4abfda2965025b2419c47e78b9dc0.tar.zst gpt4free-2bcb45bfbdd4abfda2965025b2419c47e78b9dc0.zip |
-rw-r--r-- | docs/interference.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/interference.md b/docs/interference.md index b140f66a..1b4f0c11 100644 --- a/docs/interference.md +++ b/docs/interference.md @@ -54,7 +54,7 @@ Send the POST request to /v1/chat/completions with body containing the `model` m import requests url = "http://localhost:1337/v1/chat/completions" body = { - "model": "gpt-3.5-turbo-16k", + "model": "gpt-3.5-turbo", "stream": False, "messages": [ {"role": "assistant", "content": "What can you do?"} @@ -66,4 +66,4 @@ for choice in json_response: print(choice.get('message', {}).get('content', '')) ``` -[Return to Home](/)
\ No newline at end of file +[Return to Home](/) |