Tool Call Delta
@Serializable
An incremental tool call update sent in a streaming chat completion response.
Deltas for the same tool call share the same index. The first chunk for a given tool call typically carries id, type and FunctionDelta.name; subsequent chunks append fragments of FunctionDelta.arguments in arrival order.
Constructors
Link copied to clipboard
constructor(index: Int, id: String? = null, type: ToolCallType? = null, function: FunctionDelta? = null)