Code execution content.

interface CodeExecutionCallContent {
    arguments: GeminiNextGenAPIClient.Interactions.CodeExecutionCallArguments;
    id: string;
    signature?: string;
    type: "code_execution_call";
}

Properties

The arguments to pass to the code execution.

id: string

A unique ID for this specific tool call.

signature?: string

A signature hash for backend validation.

type: "code_execution_call"