Authorization: Bearer ********************{
"model": "gpt-5.5",
"messages": [
{
"role": "user",
"content": "你好呀"
}
],
"temperature": 0.7,
"stream": false
}curl --location 'https://sub.jmlt.asia/v1/chat/completions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"model": "gpt-5.5",
"messages": [
{
"role": "user",
"content": "你好呀"
}
],
"temperature": 0.7,
"stream": false
}'{
"id": "chatcmpl-123",
"object": "chat.completion",
"created": 1677652288,
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "\n\n你好,我今天可以如何帮助你?"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 9,
"completion_tokens": 12,
"total_tokens": 21
}
}