ADK for TypeScript: API Reference
    Preparing search index...

    Interface CodeExecutionInput

    A structure that contains the input of code execution.

    interface CodeExecutionInput {
        code: string;
        executionId?: string;
        inputFiles: File[];
    }

    Properties

    code: string

    The code to execute.

    executionId?: string

    The execution ID for the stateful code execution.

    inputFiles: File[]

    The input files available to the code.