Minimal Chat Completions request
curl https://api.jatevo.ai/v1/chat/completions \
-H "Authorization: Bearer $JATEVO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.5",
"messages": [
{
"role": "user",
"content": "Summarize this in three concise bullets."
}
],
"stream": true
}'