de-francophones's picture
Upload 47 files
f693953 verified
raw
history blame
476 Bytes
export interface ProviderInfo {
color: string;
authors: string[];
}
export const PROVIDERS_MAP: Record<string, ProviderInfo> = {
"MistralAI": { color: "#FF6F00", authors: ["mistralai"] },
"Kyutai": { color: "#39F2AE", authors: ["kyutai"] },
"Hugging Face": { color: "#FEC912", authors: ["HuggingFaceTB","HuggingFaceH4","HuggingFaceFW","open-r1"] },
"INRIA": { color: "#E1000F", authors: ["inria-soda","Inria-CEDAR","almanach","oscar-corpus","scikit-learn"] },
};