The message delta object (v1)
Legacy

Represents a message delta i.e. any changed fields on a message during streaming.source

The identifier of the message, which can be referenced in API endpoints.source

The object type, which is always thread.message.delta.source

The delta containing the fields that have changed on the Message.source

OBJECT The message delta object (v1)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "id": "msg_123",
  "object": "thread.message.delta",
  "delta": {
    "content": [
      {
        "index": 0,
        "type": "text",
        "text": { "value": "Hello", "annotations": [] }
      }
    ]
  }
}