11 lines
155 B
PHP
11 lines
155 B
PHP
<?php
|
|
|
|
namespace App\Enums;
|
|
|
|
enum PredictionSource: string
|
|
{
|
|
case Llm = 'llm';
|
|
case LlmWithContext = 'llm_with_context';
|
|
case Ewma = 'ewma';
|
|
}
|