ГЛОБАЛЬНЫЙ РЕФАКТОРИНГ АРХИТЕКТУРЫ - Рефакторинг этапов 2.12.23: декомпозиция deep-turn пайплайна ассистента в runtime-адаптеры

This commit is contained in:
2026-04-10 19:22:40 +03:00
parent 19dbaff741
commit 80d108e506
116 changed files with 13949 additions and 2039 deletions
@@ -96,6 +96,7 @@ export interface AutoRunSummary {
llm_provider: string | null;
model: string | null;
use_mock: boolean | null;
analysis_date?: string | null;
prompt_version: string | null;
schema_version: string | null;
suite_id: string | null;
@@ -367,6 +368,7 @@ export interface AsyncEvalRunJob {
eval_target: AutoRunTarget;
run_id: string;
case_set_file: string | null;
analysis_date?: string | null;
total_cases: number;
completed_cases: number;
error: string | null;
@@ -376,6 +378,7 @@ export interface AsyncEvalRunJob {
run_timestamp: string | null;
score_index: number | null;
cases_total: number | null;
analysis_date?: string | null;
} | null;
}