{
"model": "gpt-3.5-turbo",
"messages": [{"role": "user", "content": "你好!"}],
"stream": false
}curl --location --request POST 'https://chatapi.littlewheat.com/v1/chat/completions' \
--header 'Authorization: Bearer 填写sk-xxx,你的密钥' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gpt-3.5-turbo",
"messages": [{"role": "user", "content": "你好!"}],
"stream": false
}'{"id":"chatcmpl-B1O2lctT946fHkFQZFEYubTs4tuFU","model":"gpt-3.5-turbo-0125","object":"chat.completion","created":1729665811,"choices":[{"index":0,"message":{"role":"assistant","content":"你好! 有什么我可以帮助你的吗?"},"finish_reason":"stop"}],"usage":{"prompt_tokens":10,"completion_tokens":19,"total_tokens":29,"prompt_tokens_details":{},"completion_tokens_details":{}}}