12 lines
194 B
PHP
12 lines
194 B
PHP
<?php
|
|
|
|
namespace App\Repositories\LLM;
|
|
|
|
enum ChatEnum: string
|
|
{
|
|
case Assistant = 'assistant';
|
|
case AssistantChunk = 'assistant_chunk';
|
|
case Tool = 'tool';
|
|
case Human = 'user';
|
|
}
|