Interface NodeProviderAssignment

Result of assigning a provider+model to a single node.

interface NodeProviderAssignment {
    nodeId: string;
    provider: string;
    model: string;
    complexity: number;
    reason: string;
}

Properties

nodeId: string
provider: string
model: string
complexity: number

Complexity score (0-1) used for balanced assignment.

reason: string

Human-readable reason for this assignment.