1. Go to this page and download the library: Download dejury/gptfaker 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/ */
dejury / gptfaker example snippets
FAKERGPT_OPENAI_API_KEY=<your-api-key>
declare(strict_types=1);
namespace Database\Factories;
use App\Models\Page;
use Illuminate\Support\Str;
use Illuminate\Database\Eloquent\Factories\Factory;
class PageFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Page::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition(): array
{
return [
'name' => $this->faker->unique()->gpt('Create an title for the page'),
'slug' => $this->faker->slug,
'content' => $this->faker->gpt('Create a short paragraph for the page'),
'visible' => true,
];
}
}
$this->faker->gpt(
'Create a short paragraph for the page',
$this->faker->paragraph
),
$choices = $this->faker->unique()->gpt(
prompt: [
"Maak een functietitel binnen de zorg aan",
"Maak een korte titel over het werken in de zorg",
"Maak een korte quote over het werken in de zorg",
"Maak een korte alinea over het werken in de zorg",
],
returnArray: true
);
return [
'overview_pretitle' => Str::of($choices[0]?->text)->trim(),
];
$this->faker->unique()->gpt(
prompt: "Maak een functietitel binnen de zorg aan",
trimQuotes: true
);