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

    Interface QueryData

    Query result containing selected world state data.

    interface QueryData {
        currentPhase?: string;
        definition?: Partial<WorldDefinitionInput>;
        entities?: {
            hasAgent: boolean;
            id: string;
            name: string;
            profile?: UserProfile;
            spaceId: string;
            type: EntityType;
        }[];
        environment?: Environment;
        spaces?: Space[];
    }
    Index

    Properties

    currentPhase?: string
    definition?: Partial<WorldDefinitionInput>
    entities?: {
        hasAgent: boolean;
        id: string;
        name: string;
        profile?: UserProfile;
        spaceId: string;
        type: EntityType;
    }[]
    environment?: Environment
    spaces?: Space[]