interface FunctionResultDelta {
    call_id: string;
    is_error?: boolean;
    name?: string;
    result: unknown;
    signature?: string;
    type: "function_result";
}

Properties

call_id: string

ID to match the ID from the function call block.

is_error?: boolean
name?: string
result: unknown

Tool call result delta.

signature?: string

A signature hash for backend validation.

type: "function_result"