halilcosdu / laravel-chatbot
Laravel AI Chatbot Package
Fund package maintenance!
Buy Me A Coffee
Requires
- php: ^8.2
- illuminate/contracts: ^10.0||^11.0
- openai-php/laravel: ^0.10.1
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- larastan/larastan: ^2.9
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^9.0.0||^8.22.0
- pestphp/pest: ^2.34
- pestphp/pest-plugin-arch: ^2.7
- pestphp/pest-plugin-laravel: ^2.3
- phpstan/extension-installer: ^1.3
- phpstan/phpstan-deprecation-rules: ^1.1
- phpstan/phpstan-phpunit: ^1.3
- spatie/laravel-ray: ^1.35
This package is auto-updated.
Last update: 2024-10-09 19:23:42 UTC
README
Laravel Chatbot provides a robust and easy-to-use solution for integrating AI chatbots into your Laravel applications. Leveraging the power of OpenAI, it allows you to create, manage, and interact with chat threads directly from your Laravel application. Whether you're building a customer service chatbot or an interactive AI assistant, laravel-chatbot
offers a streamlined, Laravel-friendly interface to the OpenAI API.
Installation
You can install the package via composer:
composer require halilcosdu/laravel-chatbot
You can publish the config file with:
php artisan vendor:publish --tag="chatbot-config"
This is the contents of the published config file:
You have to create an assistant on OpenAI and get the API key and assistant ID.
https://platform.openai.com/assistants
return [ 'assistant_id' => env('OPENAI_API_ASSISTANT_ID'), 'api_key' => env('OPENAI_API_KEY'), 'organization' => env('OPENAI_ORGANIZATION'), 'request_timeout' => env('OPENAI_TIMEOUT'), 'sleep_seconds' => env('OPENAI_SLEEP_SECONDS'), // Sleep seconds between requests default .1 'models' => [ // Thread model must have threadMessages(): HasMany relation // ThreadMessage model mush have thread(): BelongsTo relation 'thread' => \HalilCosdu\ChatBot\Models\Thread::class, 'thread_messages' => \HalilCosdu\ChatBot\Models\ThreadMessage::class ], ];
You can publish and run the migrations with:
php artisan vendor:publish --tag="chatbot-migrations"
php artisan migrate
This will migrate the following tables:
Schema::create('threads', function (Blueprint $table) { $table->id(); $table->string('owner_id')->nullable()->index(); $table->string('subject'); $table->string('remote_thread_id')->index(); $table->timestamps(); });
Schema::create('thread_messages', function (Blueprint $table) { $table->id(); $table->foreignIdFor(config('chatbot.models.thread'))->constrained()->cascadeOnDelete(); $table->string('role')->index(); $table->longText('content'); $table->timestamps(); });
Usage
public function listThreads(mixed $ownerId = null, mixed $search = null, mixed $appends = null): \Illuminate\Contracts\Pagination\LengthAwarePaginator public function createThread(string $subject, mixed $ownerId = null): \Illuminate\Database\Eloquent\Model|\Illuminate\Database\Eloquent\Builder public function thread(int $id, mixed $ownerId = null): \Illuminate\Database\Eloquent\Model|\Illuminate\Database\Eloquent\Builder public function updateThread(string $message, int $id, mixed $ownerId = null): \Illuminate\Database\Eloquent\Model|\Illuminate\Database\Eloquent\Builder public function deleteThread(int $id, mixed $ownerId = null): void
ChatBot::listThreads(): LengthAwarePaginator; /* List all threads */ ChatBot::createThread('Hello, what is the capital of Turkey?'): Model; /* Create a new thread */ ChatBot::thread($id): Model; /* Get a thread with messages */ ChatBot::updateThread('Where should I visit?', $id): Model; /* Continue the conversation */ ChatBot::deleteThread($id): void; /* Delete the thread */
Raw Data - Not Saved to Database
You can use the following methods to interact with the OpenAI API directly.
public function createThreadAsRaw(string $subject) public function listThreadMessagesAsRaw(string $remoteThreadId) public function updateThreadAsRaw(string $remoteThreadId, array $data) /* $data = ['role' => 'user or assistant', 'content' => 'Hello'] */ public function deleteThreadAsRaw(string $remoteThreadId) public function threadAsRaw(string $threadId) public function messageAsRaw(string $threadId, string $messageId) public function modifyMessageAsRaw(string $threadId, string $messageId, array $parameters)
ChatBot::createThreadAsRaw(string $subject); ChatBot::listThreadMessagesAsRaw(string $remoteThreadId); ChatBot::updateThreadAsRaw(string $remoteThreadId, array $data); ChatBot::deleteThreadAsRaw(string $remoteThreadId); ChatBot::threadAsRaw(string $threadId); ChatBot::messageAsRaw(string $threadId, string $messageId); ChatBot::modifyMessageAsRaw(string $threadId, string $messageId, array $parameters);
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.