Streaming chat
curl https://api.venice.ai/api/v1/chat/completions \
-H "Authorization: Bearer $VENICE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "aion-labs-aion-3-5-mini",
"stream": true,
"messages": [{ "role": "user", "content": "Draft the release note." }]
}'