in text/text.cpp [39:52]
std::string getCategoryName(TextCategory category) {
switch (category) {
case TextCategory::Hate:
return "Hate";
case TextCategory::SelfHarm:
return "Self Harm";
case TextCategory::Sexual:
return "Sexual";
case TextCategory::Violence:
return "Violence";
default:
return "Unknown";
}
}