@karmaniverous/jeeves-runner
    Preparing search index...

    Interface SessionExecutionOptions

    Options for executing a session job.

    interface SessionExecutionOptions {
        gatewayClient: GatewayClient;
        jobId: string;
        pollIntervalMs?: number;
        script: string;
        timeoutMs?: number;
    }
    Index

    Properties

    gatewayClient: GatewayClient

    Gateway client instance.

    jobId: string

    Job identifier (used as session label).

    pollIntervalMs?: number

    Initial poll interval in milliseconds (default 5000). Exposed for testing.

    script: string

    Script field from job: can be raw prompt, path to .md/.txt, or legacy .js dispatcher.

    timeoutMs?: number

    Optional execution timeout in milliseconds.