@squidcloud/client
    Preparing search index...

    Interface MmEntity

    Represents a matchmaker entity for a given category. The metadata is used to filter the entities when finding matches.

    interface MmEntity {
        categoryId: string;
        content: string;
        id: string;
        metadata: AiContextMetadata;
    }

    Hierarchy (View Summary)

    Index

    Properties

    categoryId: string

    The ID of the category this entity belongs to.

    content: string

    The content of the entity to be matched.

    id: string

    The unique identifier of the entity.

    Metadata used for filtering entities during matching.