Download the PHP package dejury/gptfaker without Composer
On this page you can find all versions of the php package dejury/gptfaker. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download dejury/gptfaker
More information about dejury/gptfaker
Files in dejury/gptfaker
Package gptfaker
Short Description An package that integrates with FakerPHP and generates AI based texts
License MIT
Informations about the package gptfaker
GPTFaker
This package adds the possibility to use GPT to generate fake text. It completely integrates with Laravel and their factories.
Installation
Install the package using composer:
Add this to your .env
file:
Config
The config file can be published with the following command:
Usage
Use it in your Laravel Factory:
Fallback
A fallback can be supplied in case ChatGPT is unable to create a response, the api key is not set or if FakerGPT should not be executed for the given environment.
By default this value is set to null
so it is highly recommended to provide a valid fallback.
Multi-language
Prompts are accepted in every language ChatGPT understands. The results will be translated to your configured faker locale.
Multiple prompts
It is possible to give an array with prompts:
Environments
You can configure for which environments FakerGPT should be executed. By default this is only for local
environment.
This can be changed by publishing the config file as described above and overwriting the environment
config.
Trimming quotes
ChatGPT has a tendency to start end and sentences with quotes, especially when requesting titles, this is often undesirable. These quotes can be trimmed as follows:
Performance mode
Performance mode can be enabled to drastically improve the speed of your factories/seeders. This executes the same prompt several times at once instead of making multiple requests and caches the results. Each result will only be used once. When the cache runs empty a new batch will be fetched. This is an opt-in feature, as it may expend tokens to cache results that might never be used, and as a result it becomes more expensive to use.
This feature can be enabled by adding the following line to your .env
Persistent Cache
Often it is enough to generate fake data once rather than for every time the seeders are being executed, both for monetary and execution speed reasons.
For these situations persistent cache can be enabled. This will cache the prompts and their results in .fakergpt_cache.php
.
Persistent cache will have the side effect (and potential benefit) that generated content is predictable.
Unlike most cache files it's highly recommended to commit the .fakergpt_cache.php
when this feature is enabled.
All versions of gptfaker with dependencies
fakerphp/faker Version ^1.23
tectalic/openai Version ^1.5
illuminate/support Version ^9|^10