LLM
Quick Example
curl 'https://cloud.vtrix.ai/llm/chat/completions' \
-H "Authorization: Bearer YOUR_API_KEY" \
-H 'Content-Type: application/json' \
-d '{
"model": "vtrix-gpt-5",
"messages": [{"role":"user","content":"hello"}]
}'Streaming Response
curl 'https://cloud.vtrix.ai/llm/chat/completions' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"model": "vtrix-gpt-5",
"messages": [{"role":"user","content":"hello"}],
"stream": true
}'Last updated