events.iterate.com

Event type

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

One streamed chunk received from the transport, verbatim. Ephemeral: it reaches ephemeral subscriptions (browser feed, TUI) but is excluded from default reads, never delivered to durable subscribers, and evictable — the durable truth is the assistant context item / llm-request-settled pair.

Payload schema

chunkany

The provider's chunk object, verbatim.

llmRequestOffsetinteger

The in-flight request this chunk belongs to.

sequenceinteger

Chunk ordinal within the response.

Raw JSON schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "chunk": {
      "description": "The provider's chunk object, verbatim."
    },
    "llmRequestOffset": {
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991,
      "description": "The in-flight request this chunk belongs to."
    },
    "sequence": {
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991,
      "description": "Chunk ordinal within the response."
    }
  },
  "required": [
    "chunk",
    "llmRequestOffset",
    "sequence"
  ]
}