PHP code example of gamalkh299 / gpt-content-reviewer

1. Go to this page and download the library: Download gamalkh299/gpt-content-reviewer library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

gamalkh299 / gpt-content-reviewer example snippets


return [
    'key' => env('CHAT_GPT_API_KEY'),
    'queue' => env('GPT_QUEUE', 'gpt-content-reviewer'),
];

use gamalkh\GptContentReviewer\Traits\Reviewable;

public function getReviewableColumns(): array
{
   // return the columns you want to review
    return ['content'];
}

public function handleReviewResult($result)
{
    // handle the review result
}


$model = Model::find(1);
$gptContentReviewer = new gamalkh\GptContentReviewer();
$gptContentReviewer->createReview($model);
bash
php artisan vendor:publish --tag="gpt-content-reviewer"
php artisan migrate