YOUR_API_KEY with your secret API key.gpt-3.5-turbo ". You should receive a response similar to the following:
1 {
2 "id":"chatcmpl-abc123",
3 "object":"chat.completion",
4 "created":1677858242,
5 "model":"gpt-3.5-turbo-0301",
6 "usage":{
7 "prompt_tokens":13,
8 "completion_tokens":7,
9 "total_tokens":20
10},
11 "choices":[
12 {
13 "message":{
14 "role":"assistant",
15 "content":"\n\nThis is a test!"
16},
17 "finish_reason":"stop",
18 "index":0
19}
20 ]
21 }finish_reason is stop which means the API returned complete completion of model generation. In the above request, we only generated one message, but you can set the parameter n to generate multiple message selections. In this example, gpt-3.5-turbo is used more for traditional text completion tasks. The model is also optimized for chat applications.