Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/whatsapp-crm/vendor/openai-php/client/src/Enums/Moderations/
Upload File :
Current File : /home/users/unlimited/www/whatsapp-crm/vendor/openai-php/client/src/Enums/Moderations/Category.php

<?php

declare(strict_types=1);

namespace OpenAI\Enums\Moderations;

enum Category: string
{
    case Hate = 'hate';
    case HateThreatening = 'hate/threatening';
    case Harassment = 'harassment';
    case HarassmentThreatening = 'harassment/threatening';
    case SelfHarm = 'self-harm';
    case SelfHarmIntent = 'self-harm/intent';
    case SelfHarmInstructions = 'self-harm/instructions';
    case Sexual = 'sexual';
    case SexualMinors = 'sexual/minors';
    case Violence = 'violence';
    case ViolenceGraphic = 'violence/graphic';
}