@squidcloud/client
    Preparing search index...

    Interface MmEntityMatch

    Represents a matchmaker entity match. A high score indicates a good match.

    interface MmEntityMatch {
        categoryId: string;
        content: string;
        id: string;
        metadata: AiContextMetadata;
        reasoning: string;
        score: number;
    }

    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.

    reasoning: string

    The reasoning behind the match score, provided by the AI.

    score: number

    The score of the match, ranging from 0 to 100, where 100 is the best match.