amber-laravel/app/Repositories/LLM/ChatEnum.php

12 lines
194 B
PHP
Raw Normal View History

2024-07-24 17:16:41 +00:00
<?php
namespace App\Repositories\LLM;
enum ChatEnum: string
{
case Assistant = 'assistant';
case AssistantChunk = 'assistant_chunk';
case Tool = 'tool';
case Human = 'user';
}