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

Properties

stdout: string

The standard output of the code execution

stderr: string

The standard error of the code execution

outputFiles: File[]

The output files from the code execution