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