Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 395 Bytes
80ea539 |
1 2 3 4 5 6 7 8 9 10 11 12 |
// for the moment only Hugging Face employees can be certified,
// but it might be given to a select few high-profile partners
// normal users don't need to be certified to enjoy the platform
export const certifiedUsers = new Set([
"jbilcke-hf",
"merve",
"xenova"
])
export function isCertifiedUser(username: string): boolean {
return certifiedUsers.has(username.trim().toLowerCase())
} |