Represents a run step delta i.e. any changed fields on a run step during streaming.

interface RunStepDeltaEvent {
    delta: RunStepDelta;
    id: string;
    object: "thread.run.step.delta";
}

Properties

Properties

The delta containing the fields that have changed on the run step.

id: string

The identifier of the run step, which can be referenced in API endpoints.

object: "thread.run.step.delta"

The object type, which is always thread.run.step.delta.