diff options
Diffstat (limited to '')
-rw-r--r-- | docs/interference-api.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/interference-api.md b/docs/interference-api.md index b8e38fae..a6999345 100644 --- a/docs/interference-api.md +++ b/docs/interference-api.md @@ -68,7 +68,7 @@ curl -X POST "http://localhost:1337/v1/chat/completions" \ "content": "Hello" } ], - "model": "gpt-3.5-turbo" + "model": "gpt-4o-mini" }' ``` @@ -108,7 +108,7 @@ client = OpenAI( ) response = client.chat.completions.create( - model="gpt-3.5-turbo", + model="gpt-4o-mini", messages=[{"role": "user", "content": "Write a poem about a tree"}], stream=True, ) @@ -135,7 +135,7 @@ import requests url = "http://localhost:1337/v1/chat/completions" body = { - "model": "gpt-3.5-turbo", + "model": "gpt-4o-mini", "stream": False, "messages": [ {"role": "assistant", "content": "What can you do?"} |