curl -X POST "https://api.incredible.one/v1/chat-completion" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $INCREDIBLE_API_KEY" \
  -d '{
    "model": "small-1",
    "stream": true,
    "messages": [{"role": "user", "content": "Explain computers in ~30 words."}]
  }'
View source on GitHub → 4_streaming_chat.py