ai-tube / src /app /state /categories.ts
jbilcke's picture
preparing transition to user-generated content + gaussians
ac7030c
raw
history blame contribute delete
No virus
545 Bytes
// TODO:
// this is obsolete, we should search on the Hugging Face platform instead
export const videoCategoriesWithLabels = {
// "random": "Random",
// "lofi": "Lofi Hip-Hop",
"Sports": "Sports",
"Education": "Education",
"Time Travel": "Time Travel", // vlogs etc
// "gaming": "Gaming",
// "trailers": "Trailers",
// "aitubers": "AiTubers",
// "ads": "100% Ads",
}
export type VideoCategory = keyof typeof videoCategoriesWithLabels
export const videoCategories = Object.keys(videoCategoriesWithLabels) as VideoCategory[]