events.iterate.com

Event type

events.iterate.com/agent/llm-response-chunks

A coalescing window of streamed chunks received from the transport, verbatim and in provider order. One event per flush (~150ms of streaming), not per chunk: journaling each chunk individually awaited a Durable Object commit per token and capped streaming at the append round-trip (~17 tok/s). Ephemeral: it reaches open browser/TUI connections but is excluded from default reads and durable subscriptions, and may be evicted — the durable truth is the assistant context item / llm-request-settled pair.

Payload schema

chunksany[]

The window's provider chunk objects, verbatim, in order.

llmRequestOffsetinteger

The in-flight request these chunks belong to.

sequenceinteger

Flush ordinal within the response.

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "chunks": {
      "minItems": 1,
      "type": "array",
      "items": {},
      "description": "The window's provider chunk objects, verbatim, in order."
    },
    "llmRequestOffset": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991,
      "description": "The in-flight request these chunks belong to."
    },
    "sequence": {
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991,
      "description": "Flush ordinal within the response."
    }
  },
  "required": [
    "chunks",
    "llmRequestOffset",
    "sequence"
  ]
}