{
"model": "gpt-3.5-turbo-1106",
"messages": [{"role": "user", "content": "Hello!"}]
}curl --location --request POST 'https://api.gaiasc.com/v1/chat/completions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer ' \
--header 'Authorization: Bearer ' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gpt-3.5-turbo-1106",
"messages": [{"role": "user", "content": "Hello!"}]
}'{
"id": "chatcmpl-8yui7XCx8r0PSqr7ASOHU3Z9xJSYQ",
"object": "chat.completion",
"created": 1709528367,
"model": "gpt-3.5-turbo-0125",
"choices": [
{
"index": 0,
"message": {
"role": "assistant",
"content": "Hello! How can I assist you today?"
},
"logprobs": null,
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 9,
"completion_tokens": 9,
"total_tokens": 18
},
"system_fingerprint": "fp_2b778c6b35"
}