interface FunctionResultDelta {
    call_id?: string;
    is_error?: boolean;
    name?: string;
    result?:
        | string
        | GeminiNextGenAPIClient.Interactions.ContentDelta.FunctionResultDelta.Items;
    type: "function_result";
}

Properties

call_id?: string

ID to match the ID from the function call block.

is_error?: boolean
name?: string

Tool call result delta.

type: "function_result"

Used as the OpenAPI type discriminator for the content oneof.