rcerljenko / laravel-openai-moderation
Laravel package for OpenAI Moderation API
Installs: 1 243
Dependents: 0
Suggesters: 0
Security: 0
Stars: 24
Watchers: 3
Forks: 2
Open Issues: 0
Requires
- php: ^8.1
- illuminate/contracts: ^9.0|^10.0
- illuminate/http: ^9.0|^10.0
- illuminate/support: ^9.0|^10.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.14
README
Laravel validation Rule using OpenAI Moderation API. Gives you a way to validate your form requests for inappropriate content.
Installation
Standard Composer package installation:
composer require rcerljenko/laravel-openai-moderation
Usage
- Publish config and translation files.
php artisan vendor:publish --provider="RCerljenko\LaravelOpenAIModeration\ServiceProvider"
-
Set your OpenAI API key and enable package via newly created config file =>
config/openai.php
-
Use provided rule with your validation rules.
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; use RCerljenko\LaravelOpenAIModeration\Rules\OpenAIModeration; class StoreText extends FormRequest { /** * Determine if the user is authorized to make this request. */ public function authorize(): bool { return true; } /** * Get the validation rules that apply to the request. */ public function rules(): array { return [ 'text' => ['required', 'string', new OpenAIModeration], ]; } }