import { type Fit } from "@/lib/api" import { cn } from "@/lib/utils" // Die 5 kanonischen Serving-Rollen (identisch zu Backend sources.py/llamaswap.ROLE_IDS). export const ROLES = ["fast", "heavy", "coder", "vision", "scout"] export function FitBadge({ fit }: { fit: Fit }) { const tone = { perfect: "bg-emerald-500/15 text-emerald-400 border border-emerald-500/20", marginal: "bg-amber-500/15 text-amber-400 border border-amber-500/20", too_tight: "bg-red-500/15 text-red-400 border border-red-500/20", }[fit.level] return ( {fit.text} • {fit.req_gb} GB RAM ) } export function getBrandInfo(name: string) { const low = name.toLowerCase() if (low.includes("qwen")) return { name: "Qwen", color: "bg-purple-500/20 text-purple-300 border-purple-500/30", initial: "Q" } if (low.includes("gemma")) return { name: "Gemma", color: "bg-blue-500/20 text-blue-300 border-blue-500/30", initial: "G" } if (low.includes("llama")) return { name: "Llama", color: "bg-red-500/20 text-red-300 border-red-500/30", initial: "🦙" } if (low.includes("mistral") || low.includes("mixtral")) return { name: "Mistral", color: "bg-orange-500/20 text-orange-300 border-orange-500/30", initial: "M" } if (low.includes("deepseek")) return { name: "DeepSeek", color: "bg-cyan-500/20 text-cyan-300 border-cyan-500/30", initial: "D" } if (low.includes("hermes") || low.includes("nous")) return { name: "Hermes", color: "bg-amber-500/20 text-amber-300 border-amber-500/30", initial: "H" } if (low.includes("phi")) return { name: "Phi", color: "bg-emerald-500/20 text-emerald-300 border-emerald-500/30", initial: "Φ" } return { name: "Other", color: "bg-slate-500/20 text-slate-300 border-slate-500/30", initial: "AI" } }