Neutrome SDK reference
    Preparing search index...

    Type Alias Program

    A conversation encoded as instructions plus the buffers they reference.

    Programs are treated as immutable: every helper in this package returns a new program rather than editing the input.

    type Program = {
        buffers: Uint8Array[];
        code: Instruction[];
    }
    Index
    buffers: Uint8Array[]
    code: Instruction[]