Skip to content

alnutile/laravel-ai-client

Repository files navigation

Base client to talk to ChatBot amd Dall-e2 and Soon Other Services

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Going to build some basic Driver like clients to talk to different AI service but like with Laravel Storage it will treat them all the same.

  • ChatGPT for text
  • Jasper when ChatGPT is down :(
  • Dall-2
  • OpenAI Moderator
  • Midjourney - when it gets an api

Installation

You can install the package via composer:

composer require alnutile/laravel-chatgpt

You can then set your .env:

AI_CLIENT=sk-key
AI_MOCK=false

If you set AI_MOCK to true it will just return some fixture data so if you are working in your UI for example it will just show that data.

Usage

Here is an example of

  • Call Moderation to see if the text is ok
  • TextClientFacade to do a text search with adding a prefix to the request
  • SearchResults Event to just let the system know and react to it like make a local copy of the data
  • ModerationFailed Event so you can react to that
$moderationOk = ModerationClientFacade::checkOk(request()->search);
if ($moderationOk == false) {
    ModerationFailed::dispatch(request());
} else {
        $results = TextClientFacade::addPrefix('can you give me tl;dr terms of service for')->text($search);
        SearchResults::dispatch($results);
}

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages