Spaces:
Runtime error
Runtime error
File size: 27,551 Bytes
cd8bd0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 | import { backupDbFile } from "./backup";
import { getDefaultCompressionCombo } from "./compressionCombos";
import { getDbInstance } from "./core";
import { invalidateDbCache } from "./readCache";
import {
ENGINE_IDS,
DEFAULT_AGGRESSIVE_CONFIG,
DEFAULT_CAVEMAN_CONFIG,
DEFAULT_CAVEMAN_OUTPUT_MODE_CONFIG,
DEFAULT_COMPRESSION_LANGUAGE_CONFIG,
DEFAULT_COMPRESSION_CONFIG,
DEFAULT_CONTEXT_EDITING_CONFIG,
DEFAULT_MCP_ACCESSIBILITY_CONFIG,
DEFAULT_RTK_CONFIG,
DEFAULT_ULTRA_CONFIG,
clampMcpAccessibilityConfig,
type AggressiveConfig,
type CavemanConfig,
type CavemanOutputModeConfig,
type OutputStyleSelectionEntry,
type CompressionLanguageConfig,
type CompressionPipelineStep,
type CompressionConfig,
type CompressionMode,
type ContextEditingConfig,
type EngineToggle,
type McpAccessibilityConfig,
type RtkConfig,
type UltraConfig,
} from "@omniroute/open-sse/services/compression/types.ts";
import { maybePrewarmUltraSlmOnConfig } from "@omniroute/open-sse/services/compression/ultra.ts";
const NAMESPACE = "compression";
const COMPRESSION_MODES = new Set<CompressionMode>([
"off",
"lite",
"standard",
"aggressive",
"ultra",
"rtk",
"stacked",
]);
type JsonRecord = Record<string, unknown>;
// TTL cache for compression settings (5s)
let compressionSettingsCache: {
value: CompressionConfig;
expiresAt: number;
dbRef: WeakRef<object>;
} | null = null;
// Phase 4 (B): one cold-start SLM pre-warm attempt per process. The save path fires
// on every enable transition; this guard keeps the read path from re-warming on every
// cache miss (the read path runs at most once per 5s, but a cold start should warm once,
// not repeatedly). Best-effort either way (`maybePrewarmUltraSlmOnConfig` never throws).
let _ultraSlmColdPrewarmAttempted = false;
function toRecord(value: unknown): JsonRecord {
return value && typeof value === "object" ? (value as JsonRecord) : {};
}
function parseJsonSafe(raw: string | null): unknown {
if (!raw) return undefined;
try {
return JSON.parse(raw);
} catch {
return undefined;
}
}
function normalizeCavemanConfig(value: unknown): CavemanConfig {
const record = toRecord(value);
const intensity =
record.intensity === "lite" || record.intensity === "full" || record.intensity === "ultra"
? record.intensity
: DEFAULT_CAVEMAN_CONFIG.intensity;
return {
...DEFAULT_CAVEMAN_CONFIG,
...record,
compressRoles: Array.isArray(record.compressRoles)
? record.compressRoles.filter(
(role): role is "user" | "assistant" | "system" =>
role === "user" || role === "assistant" || role === "system"
)
: DEFAULT_CAVEMAN_CONFIG.compressRoles,
skipRules: Array.isArray(record.skipRules)
? record.skipRules.filter((rule): rule is string => typeof rule === "string")
: DEFAULT_CAVEMAN_CONFIG.skipRules,
minMessageLength:
typeof record.minMessageLength === "number" && Number.isFinite(record.minMessageLength)
? Math.max(0, Math.floor(record.minMessageLength))
: DEFAULT_CAVEMAN_CONFIG.minMessageLength,
preservePatterns: Array.isArray(record.preservePatterns)
? record.preservePatterns.filter((pattern): pattern is string => typeof pattern === "string")
: DEFAULT_CAVEMAN_CONFIG.preservePatterns,
intensity,
};
}
function normalizeCavemanOutputModeConfig(value: unknown): CavemanOutputModeConfig {
const record = toRecord(value);
return {
...DEFAULT_CAVEMAN_OUTPUT_MODE_CONFIG,
enabled:
typeof record.enabled === "boolean"
? record.enabled
: DEFAULT_CAVEMAN_OUTPUT_MODE_CONFIG.enabled,
intensity:
record.intensity === "lite" || record.intensity === "full" || record.intensity === "ultra"
? record.intensity
: DEFAULT_CAVEMAN_OUTPUT_MODE_CONFIG.intensity,
autoClarity:
typeof record.autoClarity === "boolean"
? record.autoClarity
: DEFAULT_CAVEMAN_OUTPUT_MODE_CONFIG.autoClarity,
};
}
function normalizeOutputStyleSelection(value: unknown): OutputStyleSelectionEntry[] {
if (!Array.isArray(value)) return [];
const out: OutputStyleSelectionEntry[] = [];
for (const raw of value) {
const record = toRecord(raw);
const id = typeof record.id === "string" ? record.id.trim() : "";
const level =
record.level === "lite" || record.level === "full" || record.level === "ultra"
? record.level
: null;
if (id && level) out.push({ id, level });
}
return out;
}
function normalizeRtkConfig(value: unknown): RtkConfig {
const record = toRecord(value);
return {
...DEFAULT_RTK_CONFIG,
enabled: typeof record.enabled === "boolean" ? record.enabled : DEFAULT_RTK_CONFIG.enabled,
intensity:
record.intensity === "minimal" ||
record.intensity === "standard" ||
record.intensity === "aggressive"
? record.intensity
: DEFAULT_RTK_CONFIG.intensity,
applyToToolResults:
typeof record.applyToToolResults === "boolean"
? record.applyToToolResults
: DEFAULT_RTK_CONFIG.applyToToolResults,
applyToCodeBlocks:
typeof record.applyToCodeBlocks === "boolean"
? record.applyToCodeBlocks
: DEFAULT_RTK_CONFIG.applyToCodeBlocks,
applyToAssistantMessages:
typeof record.applyToAssistantMessages === "boolean"
? record.applyToAssistantMessages
: DEFAULT_RTK_CONFIG.applyToAssistantMessages,
enabledFilters: Array.isArray(record.enabledFilters)
? record.enabledFilters.filter((filter): filter is string => typeof filter === "string")
: DEFAULT_RTK_CONFIG.enabledFilters,
disabledFilters: Array.isArray(record.disabledFilters)
? record.disabledFilters.filter((filter): filter is string => typeof filter === "string")
: DEFAULT_RTK_CONFIG.disabledFilters,
maxLinesPerResult: boundedInt(
record.maxLinesPerResult,
DEFAULT_RTK_CONFIG.maxLinesPerResult,
0,
100000
),
maxCharsPerResult: boundedInt(
record.maxCharsPerResult,
DEFAULT_RTK_CONFIG.maxCharsPerResult,
0,
1000000
),
deduplicateThreshold: boundedInt(
record.deduplicateThreshold,
DEFAULT_RTK_CONFIG.deduplicateThreshold,
2,
100
),
customFiltersEnabled:
typeof record.customFiltersEnabled === "boolean"
? record.customFiltersEnabled
: DEFAULT_RTK_CONFIG.customFiltersEnabled,
trustProjectFilters:
typeof record.trustProjectFilters === "boolean"
? record.trustProjectFilters
: DEFAULT_RTK_CONFIG.trustProjectFilters,
rawOutputRetention:
record.rawOutputRetention === "never" ||
record.rawOutputRetention === "failures" ||
record.rawOutputRetention === "always"
? record.rawOutputRetention
: DEFAULT_RTK_CONFIG.rawOutputRetention,
rawOutputMaxBytes: boundedInt(
record.rawOutputMaxBytes,
DEFAULT_RTK_CONFIG.rawOutputMaxBytes,
1024,
10_000_000
),
enableGrouping:
typeof record.enableGrouping === "boolean"
? record.enableGrouping
: (DEFAULT_RTK_CONFIG.enableGrouping ?? false),
groupingThreshold: boundedInt(
record.groupingThreshold,
DEFAULT_RTK_CONFIG.groupingThreshold ?? 3,
2,
100
),
stripCodeComments:
typeof record.stripCodeComments === "boolean"
? record.stripCodeComments
: (DEFAULT_RTK_CONFIG.stripCodeComments ?? false),
preserveDocstrings:
typeof record.preserveDocstrings === "boolean"
? record.preserveDocstrings
: (DEFAULT_RTK_CONFIG.preserveDocstrings ?? true),
};
}
function normalizeLanguageConfig(value: unknown): CompressionLanguageConfig {
const record = toRecord(value);
const defaultLanguage =
typeof record.defaultLanguage === "string" && record.defaultLanguage.trim()
? record.defaultLanguage.trim()
: DEFAULT_COMPRESSION_LANGUAGE_CONFIG.defaultLanguage;
const enabledPacks = Array.isArray(record.enabledPacks)
? record.enabledPacks
.filter((pack): pack is string => typeof pack === "string" && pack.trim().length > 0)
.map((pack) => pack.trim())
: DEFAULT_COMPRESSION_LANGUAGE_CONFIG.enabledPacks;
return {
...DEFAULT_COMPRESSION_LANGUAGE_CONFIG,
enabled:
typeof record.enabled === "boolean"
? record.enabled
: DEFAULT_COMPRESSION_LANGUAGE_CONFIG.enabled,
defaultLanguage,
autoDetect:
typeof record.autoDetect === "boolean"
? record.autoDetect
: DEFAULT_COMPRESSION_LANGUAGE_CONFIG.autoDetect,
enabledPacks: [...new Set(enabledPacks.length > 0 ? enabledPacks : ["en"])],
};
}
function normalizeContextEditingConfig(value: unknown): ContextEditingConfig {
const record = toRecord(value);
return {
...DEFAULT_CONTEXT_EDITING_CONFIG,
enabled:
typeof record.enabled === "boolean" ? record.enabled : DEFAULT_CONTEXT_EDITING_CONFIG.enabled,
};
}
// Engines allowed in the global stackedPipeline setting. MUST stay in sync with the
// compression-combo KNOWN_ENGINE_IDS (src/lib/db/compressionCombos.ts) β otherwise the
// global setting silently strips engines the combo path accepts (B-PIPELINE-DIVERGENCE).
const STACKED_PIPELINE_ENGINE_IDS = new Set([
"lite",
"caveman",
"aggressive",
"ultra",
"rtk",
"headroom",
"session-dedup",
"ccr",
"llmlingua",
]);
export function normalizeStackedPipeline(value: unknown): CompressionPipelineStep[] {
const source = Array.isArray(value) ? value : (DEFAULT_COMPRESSION_CONFIG.stackedPipeline ?? []);
const pipeline: CompressionPipelineStep[] = [];
for (const entry of source) {
const record = toRecord(entry);
const engine = record.engine;
if (typeof engine !== "string" || !STACKED_PIPELINE_ENGINE_IDS.has(engine)) {
continue;
}
pipeline.push({
engine: engine as CompressionPipelineStep["engine"],
...(typeof record.intensity === "string"
? { intensity: record.intensity as CompressionPipelineStep["intensity"] }
: {}),
...(record.config && typeof record.config === "object"
? { config: record.config as Record<string, unknown> }
: {}),
});
}
return pipeline.length > 0 ? pipeline : (DEFAULT_COMPRESSION_CONFIG.stackedPipeline ?? []);
}
function boundedInt(value: unknown, fallback: number, min: number, max: number): number {
if (typeof value !== "number" || !Number.isFinite(value)) return fallback;
return Math.min(max, Math.max(min, Math.floor(value)));
}
function boundedNumber(value: unknown, fallback: number, min: number, max: number): number {
if (typeof value !== "number" || !Number.isFinite(value)) return fallback;
return Math.min(max, Math.max(min, value));
}
function normalizeAggressiveConfig(value: unknown): AggressiveConfig {
const record = toRecord(value);
const thresholds = toRecord(record.thresholds);
const toolStrategies = toRecord(record.toolStrategies);
return {
...DEFAULT_AGGRESSIVE_CONFIG,
thresholds: {
fullSummary: boundedInt(
thresholds.fullSummary,
DEFAULT_AGGRESSIVE_CONFIG.thresholds.fullSummary,
1,
100
),
moderate: boundedInt(
thresholds.moderate,
DEFAULT_AGGRESSIVE_CONFIG.thresholds.moderate,
1,
100
),
light: boundedInt(thresholds.light, DEFAULT_AGGRESSIVE_CONFIG.thresholds.light, 1, 100),
verbatim: boundedInt(
thresholds.verbatim,
DEFAULT_AGGRESSIVE_CONFIG.thresholds.verbatim,
1,
100
),
},
toolStrategies: {
fileContent:
typeof toolStrategies.fileContent === "boolean"
? toolStrategies.fileContent
: DEFAULT_AGGRESSIVE_CONFIG.toolStrategies.fileContent,
grepSearch:
typeof toolStrategies.grepSearch === "boolean"
? toolStrategies.grepSearch
: DEFAULT_AGGRESSIVE_CONFIG.toolStrategies.grepSearch,
shellOutput:
typeof toolStrategies.shellOutput === "boolean"
? toolStrategies.shellOutput
: DEFAULT_AGGRESSIVE_CONFIG.toolStrategies.shellOutput,
json:
typeof toolStrategies.json === "boolean"
? toolStrategies.json
: DEFAULT_AGGRESSIVE_CONFIG.toolStrategies.json,
errorMessage:
typeof toolStrategies.errorMessage === "boolean"
? toolStrategies.errorMessage
: DEFAULT_AGGRESSIVE_CONFIG.toolStrategies.errorMessage,
},
summarizerEnabled:
typeof record.summarizerEnabled === "boolean"
? record.summarizerEnabled
: DEFAULT_AGGRESSIVE_CONFIG.summarizerEnabled,
maxTokensPerMessage: boundedInt(
record.maxTokensPerMessage,
DEFAULT_AGGRESSIVE_CONFIG.maxTokensPerMessage,
256,
32768
),
minSavingsThreshold: boundedNumber(
record.minSavingsThreshold,
DEFAULT_AGGRESSIVE_CONFIG.minSavingsThreshold,
0,
1
),
};
}
function normalizeUltraConfig(value: unknown): UltraConfig {
const record = toRecord(value);
const modelPath = typeof record.modelPath === "string" ? record.modelPath.trim() : "";
return {
...DEFAULT_ULTRA_CONFIG,
enabled: typeof record.enabled === "boolean" ? record.enabled : DEFAULT_ULTRA_CONFIG.enabled,
compressionRate: boundedNumber(
record.compressionRate,
DEFAULT_ULTRA_CONFIG.compressionRate,
0,
1
),
minScoreThreshold: boundedNumber(
record.minScoreThreshold,
DEFAULT_ULTRA_CONFIG.minScoreThreshold,
0,
1
),
slmFallbackToAggressive:
typeof record.slmFallbackToAggressive === "boolean"
? record.slmFallbackToAggressive
: DEFAULT_ULTRA_CONFIG.slmFallbackToAggressive,
...(modelPath ? { modelPath } : {}),
maxTokensPerMessage: boundedInt(
record.maxTokensPerMessage,
DEFAULT_ULTRA_CONFIG.maxTokensPerMessage,
0,
32768
),
};
}
// Single-mode β engine id mapping. Mirrors deriveDefaultPlan's SINGLE_MODE_OF: a legacy
// install whose only signal is `defaultMode` should turn on the engine that mode runs, so the
// derived engines map matches the old behavior. Keep conservative β these are the only modes
// that map 1:1 to a single engine.
const SINGLE_MODE_ENGINE: Partial<Record<CompressionMode, string>> = {
lite: "lite",
standard: "caveman",
aggressive: "aggressive",
ultra: "ultra",
rtk: "rtk",
};
function normalizeEngineToggle(value: unknown): EngineToggle | null {
const record = toRecord(value);
if (typeof record.enabled !== "boolean") return null;
return {
enabled: record.enabled,
...(typeof record.level === "string" ? { level: record.level } : {}),
};
}
// Sanitize an engines map for persistence: keep only known engine ids with a well-formed
// `{enabled, level?}` toggle. Mirrors the read-path validation so a malformed write can't poison
// the stored row.
function sanitizeEnginesForWrite(value: unknown): Record<string, EngineToggle> {
const record = toRecord(value);
const out: Record<string, EngineToggle> = {};
for (const id of ENGINE_IDS) {
const toggle = normalizeEngineToggle(record[id]);
if (toggle) out[id] = toggle;
}
return out;
}
// Read the stored `engines` JSON row, keeping only well-formed `{enabled, level?}` entries for
// known engine ids. Returns null when no usable row exists so the caller falls back to deriving
// the map from the legacy fields (B-backfill, migration 102).
function parseStoredEnginesMap(value: unknown): Record<string, EngineToggle> | null {
if (!value || typeof value !== "object") return null;
const out: Record<string, EngineToggle> = {};
let any = false;
for (const id of ENGINE_IDS) {
const toggle = normalizeEngineToggle((value as JsonRecord)[id]);
if (toggle) {
out[id] = toggle;
any = true;
}
}
return any ? out : null;
}
// Derive the per-engine toggle map from the legacy compression fields so existing installs keep
// their behavior before they ever write an `engines` row. Single-engine modes (caveman/rtk/ultra/
// aggressive) come from their dedicated config blocks; structural engines (lite/headroom/
// session-dedup/ccr/llmlingua) come from the default-combo pipeline. `defaultMode` is a last-resort
// signal that turns on its single-mode engine when nothing else already did.
function deriveEnginesMap(config: CompressionConfig): Record<string, EngineToggle> {
let defaultComboEngines = new Set<string>();
try {
const combo = getDefaultCompressionCombo();
if (combo) {
defaultComboEngines = new Set(combo.pipeline.map((step) => step.engine));
}
} catch {
defaultComboEngines = new Set<string>();
}
const engines: Record<string, EngineToggle> = {};
for (const id of ENGINE_IDS) {
let enabled = false;
let level: string | undefined;
switch (id) {
case "caveman":
enabled = config.cavemanConfig?.enabled === true;
if (typeof config.cavemanConfig?.intensity === "string") {
level = config.cavemanConfig.intensity;
}
break;
case "rtk":
enabled = config.rtkConfig?.enabled === true;
if (typeof config.rtkConfig?.intensity === "string") {
level = config.rtkConfig.intensity;
}
break;
case "ultra":
enabled = config.ultra?.enabled === true;
break;
case "aggressive":
enabled = aggressiveEnabled(config.aggressive);
break;
default:
// Structural engines (lite/headroom/session-dedup/ccr/llmlingua): on when present in the
// default-combo pipeline.
enabled = defaultComboEngines.has(id);
break;
}
engines[id] = { enabled, ...(level !== undefined ? { level } : {}) };
}
// Last-resort defaultMode signal: if the legacy install only set defaultMode (no engine config),
// turn on the engine that mode actually ran so the derived default matches the old behavior.
const fallbackEngine = SINGLE_MODE_ENGINE[config.defaultMode];
if (fallbackEngine && engines[fallbackEngine] && !engines[fallbackEngine].enabled) {
engines[fallbackEngine] = { ...engines[fallbackEngine], enabled: true };
}
return engines;
}
// `aggressive` config doesn't carry a top-level `enabled` flag in its type, but legacy installs may
// have stored one. Read it defensively for the derived engines map.
function aggressiveEnabled(value: AggressiveConfig | undefined): boolean {
return toRecord(value).enabled === true;
}
export async function getCompressionSettings(): Promise<CompressionConfig> {
const db = getDbInstance();
if (
compressionSettingsCache &&
Date.now() < compressionSettingsCache.expiresAt &&
compressionSettingsCache.dbRef.deref() === db
) {
return compressionSettingsCache.value;
}
compressionSettingsCache = null;
const rows = db.prepare("SELECT key, value FROM key_value WHERE namespace = ?").all(NAMESPACE);
const config: CompressionConfig = {
...DEFAULT_COMPRESSION_CONFIG,
cavemanConfig: { ...DEFAULT_CAVEMAN_CONFIG },
cavemanOutputMode: { ...DEFAULT_CAVEMAN_OUTPUT_MODE_CONFIG },
outputStyles: [],
rtkConfig: { ...DEFAULT_RTK_CONFIG },
languageConfig: { ...DEFAULT_COMPRESSION_LANGUAGE_CONFIG },
stackedPipeline: normalizeStackedPipeline(undefined),
aggressive: normalizeAggressiveConfig(undefined),
ultra: normalizeUltraConfig(undefined),
contextEditing: { ...DEFAULT_CONTEXT_EDITING_CONFIG },
engines: {},
activeComboId: null,
};
// Tracks whether a usable stored `engines` row was found. When absent (pre-migration-102 install)
// we derive the engines map from the legacy fields below so behavior is preserved.
let storedEngines: Record<string, EngineToggle> | null = null;
for (const row of rows) {
const record = toRecord(row);
const key = typeof record.key === "string" ? record.key : null;
const rawValue = typeof record.value === "string" ? record.value : null;
if (!key || rawValue === null) continue;
const parsed = parseJsonSafe(rawValue);
if (parsed === undefined) continue;
switch (key) {
case "enabled":
config.enabled = parsed === true;
break;
case "defaultMode":
if (typeof parsed === "string" && COMPRESSION_MODES.has(parsed as CompressionMode)) {
config.defaultMode = parsed as CompressionMode;
}
break;
case "autoTriggerMode":
if (typeof parsed === "string" && COMPRESSION_MODES.has(parsed as CompressionMode)) {
config.autoTriggerMode = parsed as CompressionMode;
}
break;
case "autoTriggerTokens":
config.autoTriggerTokens =
typeof parsed === "number" && Number.isFinite(parsed)
? Math.max(0, Math.floor(parsed))
: 0;
break;
case "cacheMinutes":
config.cacheMinutes =
typeof parsed === "number" && Number.isFinite(parsed)
? Math.max(1, Math.floor(parsed))
: DEFAULT_COMPRESSION_CONFIG.cacheMinutes;
break;
case "preserveSystemPrompt":
config.preserveSystemPrompt = parsed !== false;
break;
case "mcpDescriptionCompressionEnabled":
config.mcpDescriptionCompressionEnabled = parsed !== false;
break;
case "comboOverrides":
if (parsed && typeof parsed === "object") {
const overrides: Record<string, CompressionMode> = {};
for (const [comboId, mode] of Object.entries(parsed as Record<string, unknown>)) {
if (typeof mode === "string" && COMPRESSION_MODES.has(mode as CompressionMode)) {
overrides[comboId] = mode as CompressionMode;
}
}
config.comboOverrides = overrides;
}
break;
case "compressionComboId":
config.compressionComboId =
typeof parsed === "string" && parsed.trim() ? parsed.trim() : null;
break;
case "stackedPipeline":
config.stackedPipeline = normalizeStackedPipeline(parsed);
break;
case "cavemanConfig":
config.cavemanConfig = normalizeCavemanConfig(parsed);
break;
case "cavemanOutputMode":
config.cavemanOutputMode = normalizeCavemanOutputModeConfig(parsed);
break;
case "outputStyles":
config.outputStyles = normalizeOutputStyleSelection(parsed);
break;
case "rtkConfig":
config.rtkConfig = normalizeRtkConfig(parsed);
break;
case "languageConfig":
config.languageConfig = normalizeLanguageConfig(parsed);
break;
case "aggressive":
case "aggressiveConfig":
config.aggressive = normalizeAggressiveConfig(parsed);
break;
case "ultra":
case "ultraConfig":
config.ultra = normalizeUltraConfig(parsed);
break;
case "contextEditing":
config.contextEditing = normalizeContextEditingConfig(parsed);
break;
case "engines":
storedEngines = parseStoredEnginesMap(parsed);
break;
case "activeComboId":
config.activeComboId =
typeof parsed === "string" && parsed.trim() ? parsed.trim() : null;
break;
case "ultraEngine":
// Phase 4 (B): SLM tier selector. Only the two known values; anything else
// falls back to the heuristic default so a malformed row can never enable SLM.
config.ultraEngine = parsed === "slm" ? "slm" : "heuristic";
break;
case "ultraSlmPrewarm":
config.ultraSlmPrewarm = parsed === true;
break;
}
}
// Engines map: prefer the stored row; otherwise derive from the legacy fields (migration 102
// backfill on the read path). Always fill EVERY id in ENGINE_IDS so the shape matches
// DEFAULT_COMPRESSION_CONFIG.
const derived = storedEngines ?? deriveEnginesMap(config);
const engines: Record<string, EngineToggle> = {};
for (const id of ENGINE_IDS) {
engines[id] = derived[id] ?? { enabled: false };
}
config.engines = engines;
// Runtime-only marker: dispatch trusts the engines map only when it was explicitly stored
// (panel-saved). A backfilled map (no stored row) is display-only β dispatch stays on the
// legacy defaultMode/default-combo path so existing installs keep their behaviour.
config.enginesExplicit = storedEngines !== null;
// Store in TTL cache (5s expiry)
compressionSettingsCache = {
value: config,
expiresAt: Date.now() + 5000,
dbRef: new WeakRef(db),
};
// Phase 4 (B): cold-restart pre-warm β when the stored config already selects the SLM
// tier with pre-warm on, warm the model once (best-effort, fire-and-forget, guarded so
// a frequently-hit read path warms at most once per process). Cache hits return above.
if (!_ultraSlmColdPrewarmAttempted) {
_ultraSlmColdPrewarmAttempted = true;
void maybePrewarmUltraSlmOnConfig({
ultraEngine: config.ultraEngine,
ultraSlmPrewarm: config.ultraSlmPrewarm,
});
}
return config;
}
export async function updateCompressionSettings(
updates: Partial<CompressionConfig>
): Promise<CompressionConfig> {
const db = getDbInstance();
const insert = db.prepare(
"INSERT OR REPLACE INTO key_value (namespace, key, value) VALUES (?, ?, ?)"
);
const tx = db.transaction(() => {
for (const [key, value] of Object.entries(updates)) {
if (value === undefined) continue;
// Persist the engines map as ONE sanitized JSON row so the read path always gets
// well-formed { enabled, level? } toggles for known engine ids.
if (key === "engines") {
insert.run(NAMESPACE, key, JSON.stringify(sanitizeEnginesForWrite(value)));
continue;
}
insert.run(NAMESPACE, key, JSON.stringify(value));
}
});
tx();
backupDbFile("pre-write");
compressionSettingsCache = null;
invalidateDbCache();
const next = await getCompressionSettings();
// Phase 4 (B): the SAVE path covers the enable transition β if this write turns the
// SLM tier + pre-warm on, warm the model once (best-effort, fire-and-forget).
void maybePrewarmUltraSlmOnConfig({
ultraEngine: next.ultraEngine,
ultraSlmPrewarm: next.ultraSlmPrewarm,
});
return next;
}
function normalizeMcpAccessibilityConfig(value: unknown): McpAccessibilityConfig {
// clampMcpAccessibilityConfig (engine layer) owns the numeric floors so the DB normalizer and
// the live MCP-server read path agree β in particular it floors maxTextChars to a sane minimum
// (a value below the tail reservation would make smartFilterText truncate the whole text away).
return clampMcpAccessibilityConfig(value);
}
export async function getMcpAccessibilityConfig(): Promise<McpAccessibilityConfig> {
const db = getDbInstance();
const row = db
.prepare("SELECT value FROM key_value WHERE namespace = ? AND key = ?")
.get(NAMESPACE, "mcpAccessibility") as { value: string } | undefined;
return normalizeMcpAccessibilityConfig(parseJsonSafe(row?.value ?? null));
}
export async function setMcpAccessibilityConfig(
value: Partial<McpAccessibilityConfig>
): Promise<void> {
const next = normalizeMcpAccessibilityConfig({ ...DEFAULT_MCP_ACCESSIBILITY_CONFIG, ...value });
const db = getDbInstance();
db.prepare("INSERT OR REPLACE INTO key_value (namespace, key, value) VALUES (?, ?, ?)").run(
NAMESPACE,
"mcpAccessibility",
JSON.stringify(next)
);
compressionSettingsCache = null;
invalidateDbCache();
}
|