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

14 lines
274 B
PHP
Raw Permalink 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';
2024-07-24 18:53:47 +00:00
case AssistantToolCall = 'assistant_tool_call';
2024-07-24 17:16:41 +00:00
case Tool = 'tool';
case Human = 'user';
2024-07-24 18:53:47 +00:00
case System = 'system';
2024-07-24 17:16:41 +00:00
}