From 084820a8a3b29079e0f74c45a8c729155756f2e4 Mon Sep 17 00:00:00 2001 From: kami Date: Mon, 8 Jun 2026 10:03:36 +0400 Subject: [PATCH] feat(kernel): add journalCompactionTokenThreshold to OrchestrationConfig --- .../com/correx/core/kernel/orchestration/OrchestrationConfig.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/core/kernel/src/main/kotlin/com/correx/core/kernel/orchestration/OrchestrationConfig.kt b/core/kernel/src/main/kotlin/com/correx/core/kernel/orchestration/OrchestrationConfig.kt index 53c342a9..a918d1a7 100644 --- a/core/kernel/src/main/kotlin/com/correx/core/kernel/orchestration/OrchestrationConfig.kt +++ b/core/kernel/src/main/kotlin/com/correx/core/kernel/orchestration/OrchestrationConfig.kt @@ -11,4 +11,5 @@ data class OrchestrationConfig( val sandboxRoot: Path = Path.of(System.getProperty("java.io.tmpdir"), "correx-sandbox"), val defaultSystemPromptPath: String? = null, val workspace: WorkspaceContext? = null, + val journalCompactionTokenThreshold: Int = 2000, )