{
"model": "gpt-3.5-turbo",
"message":"hello"
}
curl --location --request POST 'https://api.302.ai/v1/chat/completions' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gpt-3.5-turbo",
"message":"hello"
}'
{
"output": "hello"
}