nanos/openai-exceptions

Use the OpenAI API together with Laravel Ignition's Suggestions to show AI-powered fixes for errors in your Laravel application.

1.0.2 2023-02-13 17:02 UTC

This package is auto-updated.

Last update: 2024-04-13 19:18:07 UTC


README

Use the OpenAI API together with Laravel Ignition's Suggestions to show AI-powered fixes for errors in your Laravel application.

See Add AI powered fixes to your Laravel error pages for details.

Get started

First install OpenAI Exceptions via Composer. You'll probably want to install it as dev dependency:

composer require --dev nanos/openai-exceptions

Next, publish the configuration file:

php artisan vendor:publish --provider="Nanos\OpenaiExceptions\OpenAiSolutionServiceProvider" --tag="config"

This will create a config/openai-exceptions.php configuration file in your project, which you can modify to your needs. All options are documented in the file, but the only one you need is your OpenAI API key, which you'll specify in your .env file:

OPENAI_API_KEY={YOUR KEY HERE}

Customising the prompt

If you wish to customise the prompt that is being sent to the OpenAI client for every exception, you can publish the blade view, and change it as desired:

 php artisan vendor:publish --provider="Nanos\OpenaiExceptions\OpenAiSolutionServiceProvider" --tag="views"