agentOS API Reference - v0.0.1
    Preparing search index...

    Interface PythonRuntimeOptions

    interface PythonRuntimeOptions {
        cwd?: string;
        env?: Record<string, string>;
        files?: Record<string, string | Uint8Array<ArrayBufferLike>>;
    }

    Hierarchy (View Summary)

    Index
    cwd?: string

    Default working directory for Python executions.

    env?: Record<string, string>

    Default environment merged into each Python execution.

    files?: Record<string, string | Uint8Array<ArrayBufferLike>>

    Files to seed into the VM before create() resolves.