1. Go to this page and download the library: Download helgesverre/brain 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/ */
use HelgeSverre\Brain\Facades\Brain;
$subject = 'Technology';
$count = 5;
$titles = Brain::list("Suggest $count blog titles about '$subject'", 200);
foreach ($titles as $title) {
echo $title . PHP_EOL;
}
use HelgeSverre\Brain\Facades\Brain;
$title = 'The Future of Technology';
$style = 'informative';
$minWords = 500;
$response = Brain::slow()->json(<<<PROMPT
Create an $style blog post with the title '$title'.
Write over $minWords words.
PROMPT
);
echo "Title: " . $response['title'] . PHP_EOL;
echo "Body: " . $response['body'] . PHP_EOL;
use HelgeSverre\Brain\Facades\Brain;
enum Category: string {
case Fruit = 'fruit';
case Animal = 'animal';
case Car = 'car';
}
$input = 'banana';
$result = Brain::fast()->classify($input, Category::class);