amber-laravel/app/Repositories/LLM/ChatEnum.php
2024-07-25 02:53:47 +08:00

14 lines
274 B
PHP

<?php
namespace App\Repositories\LLM;
enum ChatEnum: string
{
case Assistant = 'assistant';
case AssistantChunk = 'assistant_chunk';
case AssistantToolCall = 'assistant_tool_call';
case Tool = 'tool';
case Human = 'user';
case System = 'system';
}