fix(types): declare virtual chaos combo config (#8815)

This commit is contained in:
backryun
2026-07-28 10:38:15 +09:00
committed by GitHub
parent 5f5f4a589d
commit 0bd7ceadf8

View File

@@ -28,6 +28,7 @@ import {
SYNTHETIC_NOAUTH_CONNECTION_ID as RESILIENCE_NOAUTH_CONNECTION_ID,
type ConnectionResilienceView,
} from "./resilienceCandidateFilter";
import type { ChaosTuning } from "./chaosEngine";
/** #4235 Phase B: optional category/tier overlay for `auto/<category>:<tier>` combos.
* #6453: optional `family` overlay for `auto/<family>` combos (e.g. `auto/glm`) —
@@ -96,6 +97,12 @@ type VirtualAutoCombo = AutoComboConfig & {
explorationRate: number;
routerStrategy: string;
};
chaos?: {
enabled: true;
panelSize: number;
judgeModel?: string;
tuning: ChaosTuning;
};
};
};