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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

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

PHP Build Version
Package Version
Requires php Version ^8
fakerphp/faker Version ^1.23
tectalic/openai Version ^1.5
illuminate/support Version ^9|^10
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package dejury/gptfaker contains the following files

Loading the files please wait ....