From 8475435bf197c8a3096fd27ffd4d9c077dfdd9ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sondre=20Engebr=C3=A5ten?= Date: Mon, 16 Feb 2026 15:42:52 +0100 Subject: [PATCH] feat(investigation): add fastInvestigations field to InvestigationSettings type Co-Authored-By: Claude Sonnet 4.5 --- apps/frontend/src/shared/types/investigation.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/frontend/src/shared/types/investigation.ts b/apps/frontend/src/shared/types/investigation.ts index 1d0c4851..c7c20d93 100644 --- a/apps/frontend/src/shared/types/investigation.ts +++ b/apps/frontend/src/shared/types/investigation.ts @@ -236,6 +236,8 @@ export interface InvestigationSettings { labelConsentGiven?: boolean; /** Custom investigation label configuration */ labelCustomization?: InvestigationLabelCustomization; + /** Enable Opus 4.6 Fast Mode for investigations (2.5x faster, higher cost) */ + fastInvestigations?: boolean; } // ============================================