Guides
Streaming responses
Flip stream to true on your chat completion request, you receive incremental deltas over HTTP using the familiar SSE framing (lines beginning with data:). Parse until the sentinel [DONE].
POST
https://api.rodiumai.io/v1/chat/completionsSSE sentinel
Terminate when you receive the literal sentinel data: [DONE].
Examples
…Wire format
…Full SSE notes plus JSON chunk shapes live in API Streaming.