CustomToolCallInputDeltaEvent

class CustomToolCallInputDeltaEvent(val sequenceNumber: Int, val itemId: String, val outputIndex: Int, val delta: String) : ToolInputDeltaEvent

A fragment of the free-form input the model is generating for a CustomToolCallItem.

Constructors

Link copied to clipboard
constructor(sequenceNumber: Int, itemId: String, outputIndex: Int, delta: String)

Properties

Link copied to clipboard
open override val delta: String

The fragment; concatenating the deltas rebuilds the call's arguments or input.

Link copied to clipboard
open override val itemId: String

Identifier of the tool-call item being built.

Link copied to clipboard
open override val outputIndex: Int

Position of that item in the output list.

Link copied to clipboard
open override val sequenceNumber: Int

Position of the event in the stream; increases monotonically.

Link copied to clipboard
open override val type: String

Raw event type, as sent in the type field.

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String