#feature: add AI log analysis & some bugfix

This commit is contained in:
2026-01-14 13:58:50 +08:00
parent e479ed02ea
commit ae6c169f5f
33 changed files with 3898 additions and 164 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace App\Enums;
enum AnalysisMode: string
{
case Logs = 'logs';
case LogsWithCode = 'logs+code';
public function label(): string
{
return match ($this) {
self::Logs => '仅日志分析',
self::LogsWithCode => '日志 + 代码分析',
};
}
}