Skip to content

OutputFile

Defined in: src/sandbox/types.ts:46

A file produced as output by code execution.

Used to carry binary artifacts (images, charts, PDFs, compiled files) from sandbox execution back to the agent. Shell-based sandboxes typically return an empty array. Jupyter-backed or API-backed sandboxes can populate this with generated artifacts.

readonly name: string;

Defined in: src/sandbox/types.ts:47


readonly content: Uint8Array;

Defined in: src/sandbox/types.ts:48


readonly mimeType: string;

Defined in: src/sandbox/types.ts:49