interface CodeExecutionCallStep {
    arguments: CodeExecutionCallArguments;
    id: string;
    signature?: string;
    type: "code_execution_call";
}

Hierarchy

  • CodeExecutionCallStep$
    • CodeExecutionCallStep

Properties

The arguments to pass to the code execution.

id: string

Required. A unique ID for this specific tool call.

signature?: string

A signature hash for backend validation.

type: "code_execution_call"