返回提交历史
Modified
docs/interference.md
+2
-2
XFEstudio/gpt4free
docs/interference.md
2bcb45bf
代码差异
1 个文件
+2
-2
@@ -54,7 +54,7 @@ Send the POST request to /v1/chat/completions with body containing the `model` m
54
54
import requests
55
55
url = "http://localhost:1337/v1/chat/completions"
56
56
body = {
57
"model": "gpt-3.5-turbo-16k",
57
"model": "gpt-3.5-turbo",
58
58
"stream": False,
59
59
"messages": [
60
60
{"role": "assistant", "content": "What can you do?"}
@@ -66,4 +66,4 @@ for choice in json_response:
66
66
print(choice.get('message', {}).get('content', ''))
67
67
```
68
68
69
[Return to Home](/)
69
[Return to Home](/)