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

    Interface MolrooWorldConfig

    Configuration for connecting to a molroo world instance.

    interface MolrooWorldConfig {
        apiKey: string;
        baseUrl: string;
        storage?: StorageAdapter;
        worldId?: string;
    }
    Index

    Properties

    apiKey: string

    API key for authentication.

    baseUrl: string

    Base URL of the molroo API (e.g., 'https://api.molroo.io').

    storage?: StorageAdapter

    Optional storage adapter for snapshot backup/restore to external storage (S3, R2, etc.)

    worldId?: string

    World instance ID. Set automatically by MolrooWorld.create.