This library allows seamless integration of a GPT-based chat interface with symfony/console
, enabling users to execute one command or a sequence of commands and manipulate them interactively via chat.
Have you dreamed of speaking the same language with your application? 😀
Try chatting with the demo app
$ OPENAI_API_KEY='<your API key>' php demo/demo.php chat
Add the library to your project via Composer:
composer require shcherbanich/symfony-console-gpt
Ensure your project uses Symfony Console (symfony/console
).
Add the Chat
command to your Symfony console application.
Set the environment variable OPENAI_API_KEY
.
The library provides a ready-to-use command: ConsoleGpt\Command\ChatCommand
. You can use it in your project in two ways:
Add the Command to Your Application
Include the ChatCommand
in your console application:
use ConsoleGpt\Command\ChatCommand;
use Symfony\Component\Console\Application;
$application = new Application();
$application->add(new ChatCommand());
$application->run();
Inherit from the Chat Application
namespace MyApp\Console;
use ConsoleGpt\Application as ChatApplication;
final class SomeApp extends ChatApplication
{
// Add custom behavior here
}
In this case, the command will be available in your application.
Run the chat
command in your console:
$ OPENAI_API_KEY='<your API key>' php console chat
and enjoy the magic :)