yeloi / laravel-openai-connect
The Laravel-OpenAI-Connect package makes it easy to integrate OpenAI's cutting-edge machine learning capabilities into Laravel applications.
dev-main
2023-07-03 23:21 UTC
Requires
- php: ^8.1
- illuminate/contracts: ^5.5|^6.0|^7.0|^8.0|^9.0|^10.0
- spatie/laravel-package-tools: ^1.14.0
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^7.9
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: >=3.8
- pestphp/pest: ^2.0
- pestphp/pest-plugin-arch: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- spatie/laravel-ray: ^1.26
This package is auto-updated.
Last update: 2025-03-10 02:33:24 UTC
README
The Laravel-OpenAI-Connect package makes it easy to integrate OpenAI.
Installation
You can install the package via composer:
composer require yeloi/laravel-openai-connect
Add to your env file the openia api key:
OPENAI_API_KEY=<secret_key>
Usage
use Connectors\OpenAIConnect\OpenAI; $system = "You are a tech company employee named bob."; $message = [ ["role" => "user", "content" => "what is your name?"], ]; $data = OpenAI::model('gpt-3.5-turbo')->system($system)->prompt($message)->options(['max_tokens' => 1000])->send(); dd($data->message); // My name is Bob. How can I assist you today?
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.