@runloop/remote-agents-sdk
    Preparing search index...

    Type Alias ProcessOutputDeltaNotification

    Base64-encoded output chunk emitted for a streaming process/spawn request.

    type ProcessOutputDeltaNotification = {
        capReached: boolean;
        deltaBase64: string;
        processHandle: string;
        stream: ProcessOutputStream;
    }
    Index

    Properties

    capReached: boolean

    True on the final streamed chunk for this stream when output was truncated by outputBytesCap.

    deltaBase64: string

    Base64-encoded output bytes.

    processHandle: string

    Client-supplied, connection-scoped processHandle from process/spawn.

    Output stream this chunk belongs to.