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

    Interface CodeExecutionResult

    A structure that contains the result of code execution.

    interface CodeExecutionResult {
        outputFiles: File[];
        stderr: string;
        stdout: string;
    }

    Properties

    outputFiles: File[]

    The output files from the code execution.

    stderr: string

    The standard error of the code execution.

    stdout: string

    The standard output of the code execution.