@molroo-ai/sdk
    Preparing search index...

    Interface StorageObject

    Storage Adapter interface for molroo SDK.

    Abstracts object storage so consumers can:

    • Back up / restore world snapshots to external storage (S3, R2, GCS)
    • Archive old episodes or large reflection documents
    • Store media attachments (voice, images)

    Implementations live in @molroo-ai/adapter-storage.

    interface StorageObject {
        contentType: string;
        key: string;
        lastModified: number;
        metadata?: Record<string, string>;
        size: number;
    }
    Index

    Properties

    contentType: string
    key: string
    lastModified: number
    metadata?: Record<string, string>
    size: number