capability 01
OpenAI-compatible inference gateway
A drop-in /v1/chat/completions endpoint over the verified compute network. Same SDKs, same JSON, same streaming protocol — but every request is routed across heterogeneous Mac, Windows, and Linux operator nodes.
- OpenAI SDK works unchanged
- Streaming SSE + non-streaming
- Per-key spend & rate limits
curl https://api.ryvion.ai/v1/chat/completions \
-H "Authorization: Bearer ryv_…" \
-H "Content-Type: application/json" \
-d '{
"model": "ryv-llama-3-8b",
"messages": [{"role":"user","content":"Hi"}],
"stream": true
}'