dashboard-react
    Preparing search index...

    Interface PlacementPreview

    Placement preview returned by the Skulk placement preview endpoint.

    interface PlacementPreview {
        model_id: string;
        sharding: "Pipeline" | "Tensor";
        instance_meta: "MlxRing" | "MlxJaccl" | "LlamaRpc";
        instance: unknown;
        memory_delta_by_node: Record<string, number> | null;
        error: string | null;
        error_code?:
            | "no_valid_placement"
            | "placement_info_pending"
            | "model_code_approval_required"
            | null;
        trust_requirement?: string
        | null;
        compatibility_source?: "card" | "signed_engine_support" | null;
        support_claim_ids?: string[];
        compatibility_detail?: string | null;
        alternative?: boolean;
    }
    Index

    Properties

    model_id: string
    sharding: "Pipeline" | "Tensor"
    instance_meta: "MlxRing" | "MlxJaccl" | "LlamaRpc"
    instance: unknown
    memory_delta_by_node: Record<string, number> | null
    error: string | null
    error_code?:
        | "no_valid_placement"
        | "placement_info_pending"
        | "model_code_approval_required"
        | null

    Stable failure category for an unavailable preview.

    trust_requirement?: string | null

    Exact cluster model-trust decision required before placement.

    compatibility_source?: "card" | "signed_engine_support" | null

    Whether card compatibility or the signed engine matrix admitted the backend.

    support_claim_ids?: string[]

    Signed claims applicable when the matrix admitted the placement.

    compatibility_detail?: string | null

    Operator-readable missing artifact, engine/build, or platform detail.

    alternative?: boolean

    Per-host alternative to the ranked pick: a single-node placement on a host that passes admission but lost the planner ranking (#557).