SSE integrity
Check OpenAI-compatible API stream integrity
Inspect SSE structure and streamed model identity for substitution or corruption.
How this check works
A stream integrity check looks at SSE events on an OpenAI-compatible API. It checks event shape and whether the streamed model name still matches the request.
01Probe
Open an SSE stream for a known request.
02Inspect
Check event types, usage, and the streamed model name.
03Conclude
Flag substitution or corruption when the stream no longer matches the request.
- How to read the result
- Final text can look fine after the stream was rewritten. A model-name mismatch in SSE is a stronger identity signal than the last paragraph.
- When to run this check
- Use this if your client reads the stream, not only the final message. Pair it with identity checks for chat apps that show the model name.
Recent reports
Public reports that included this check.
- sub.callai.onegpt-5.6-solNormalReport timeAug 18
- sub.callai.onegpt-5.6-solInconclusiveReport timeAug 18
- ai.databyte.co.iddatabyte-m1NormalReport timeAug 18
- ai.databyte.co.iddeepseek-v4-flashNormalReport timeAug 18
- ai.databyte.co.idMiniMax-M3NormalReport timeAug 18
- tokengate-cqt9ivzs.manus.spaceclaude-opus-5High riskReport timeAug 17
FAQ
What is OpenAI-compatible API stream integrity?
It means the SSE events stay well-formed and the streamed model identity still matches the request.
Why inspect the stream instead of the final text?
The final text can look complete after the stream was rewritten. Event types and model names are where substitution often shows up.
Does this check every streaming client?
It checks the SSE surface this endpoint returns. A different client wrapper can still change how events are consumed.
