curl --location -g --request POST '/v1/chat/completions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "gpt-5-mini",
"stream": false,
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "say 1"
}
]
}
],
"max_tokens": 4000
}'{}