Tool Call Delta
data class ToolCallDelta(val index: Int, val id: String? = null, val type: Tool.Type? = null, val function: FunctionCallDelta? = null)
Represents the "delta," or changes of a tool call. This is used by streams to stream 1 token at a time.
Constructors
Link copied to clipboard
constructor(index: Int, id: String? = null, type: Tool.Type? = null, function: FunctionCallDelta? = null)