CustomToolCallInputDoneEvent

class CustomToolCallInputDoneEvent(val sequenceNumber: Int, val itemId: String, val outputIndex: Int, val input: String) : ToolInputDoneEvent

The finished input of a custom tool call.

Constructors

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

Properties

Link copied to clipboard

Raw input; the same value the matching CustomToolCallItem carries.

Link copied to clipboard
open override val itemId: String

Identifier of the tool-call item.

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 toolInput: String

The finished input, spelled arguments for a function call and input for a custom tool call.

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