monad.ai
    Preparing search index...

    Type Alias MeshSelection

    Result of selecting a monad for a namespace.

    mesh-claim means the highest-scored eligible claimant won. exploration means the decision margin was low and the runner-up was intentionally tried to gather comparative feedback. name-selector means the caller bypassed scoring by asking for a specific monad.

    type MeshSelection = {
        breakdown?: ScoreBreakdown;
        entry: MonadIndexEntry;
        reason: "name-selector" | "mesh-claim" | "exploration";
        runnerUp?: MeshRunnerUp;
        score?: number;
    }
    Index

    Properties

    breakdown?: ScoreBreakdown

    entry

    reason: "name-selector" | "mesh-claim" | "exploration"
    runnerUp?: MeshRunnerUp
    score?: number