Spaces:
Running
Running
File size: 3,665 Bytes
fb4d8fe | 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 | import { parseDurationMs } from "../../../cli/parse-duration.js";
export type ContextPruningToolMatch = {
allow?: string[];
deny?: string[];
};
export type ContextPruningMode = "off" | "cache-ttl";
export type ContextPruningConfig = {
mode?: ContextPruningMode;
/** TTL to consider cache expired (duration string, default unit: minutes). */
ttl?: string;
keepLastAssistants?: number;
softTrimRatio?: number;
hardClearRatio?: number;
minPrunableToolChars?: number;
tools?: ContextPruningToolMatch;
softTrim?: {
maxChars?: number;
headChars?: number;
tailChars?: number;
};
hardClear?: {
enabled?: boolean;
placeholder?: string;
};
};
export type EffectiveContextPruningSettings = {
mode: Exclude<ContextPruningMode, "off">;
ttlMs: number;
keepLastAssistants: number;
softTrimRatio: number;
hardClearRatio: number;
minPrunableToolChars: number;
tools: ContextPruningToolMatch;
softTrim: {
maxChars: number;
headChars: number;
tailChars: number;
};
hardClear: {
enabled: boolean;
placeholder: string;
};
};
export const DEFAULT_CONTEXT_PRUNING_SETTINGS: EffectiveContextPruningSettings = {
mode: "cache-ttl",
ttlMs: 5 * 60 * 1000,
keepLastAssistants: 3,
softTrimRatio: 0.3,
hardClearRatio: 0.5,
minPrunableToolChars: 50_000,
tools: {},
softTrim: {
maxChars: 4_000,
headChars: 1_500,
tailChars: 1_500,
},
hardClear: {
enabled: true,
placeholder: "[Old tool result content cleared]",
},
};
export function computeEffectiveSettings(raw: unknown): EffectiveContextPruningSettings | null {
if (!raw || typeof raw !== "object") {
return null;
}
const cfg = raw as ContextPruningConfig;
if (cfg.mode !== "cache-ttl") {
return null;
}
const s: EffectiveContextPruningSettings = structuredClone(DEFAULT_CONTEXT_PRUNING_SETTINGS);
s.mode = cfg.mode;
if (typeof cfg.ttl === "string") {
try {
s.ttlMs = parseDurationMs(cfg.ttl, { defaultUnit: "m" });
} catch {
// keep default ttl
}
}
if (typeof cfg.keepLastAssistants === "number" && Number.isFinite(cfg.keepLastAssistants)) {
s.keepLastAssistants = Math.max(0, Math.floor(cfg.keepLastAssistants));
}
if (typeof cfg.softTrimRatio === "number" && Number.isFinite(cfg.softTrimRatio)) {
s.softTrimRatio = Math.min(1, Math.max(0, cfg.softTrimRatio));
}
if (typeof cfg.hardClearRatio === "number" && Number.isFinite(cfg.hardClearRatio)) {
s.hardClearRatio = Math.min(1, Math.max(0, cfg.hardClearRatio));
}
if (typeof cfg.minPrunableToolChars === "number" && Number.isFinite(cfg.minPrunableToolChars)) {
s.minPrunableToolChars = Math.max(0, Math.floor(cfg.minPrunableToolChars));
}
if (cfg.tools) {
s.tools = cfg.tools;
}
if (cfg.softTrim) {
if (typeof cfg.softTrim.maxChars === "number" && Number.isFinite(cfg.softTrim.maxChars)) {
s.softTrim.maxChars = Math.max(0, Math.floor(cfg.softTrim.maxChars));
}
if (typeof cfg.softTrim.headChars === "number" && Number.isFinite(cfg.softTrim.headChars)) {
s.softTrim.headChars = Math.max(0, Math.floor(cfg.softTrim.headChars));
}
if (typeof cfg.softTrim.tailChars === "number" && Number.isFinite(cfg.softTrim.tailChars)) {
s.softTrim.tailChars = Math.max(0, Math.floor(cfg.softTrim.tailChars));
}
}
if (cfg.hardClear) {
if (typeof cfg.hardClear.enabled === "boolean") {
s.hardClear.enabled = cfg.hardClear.enabled;
}
if (typeof cfg.hardClear.placeholder === "string" && cfg.hardClear.placeholder.trim()) {
s.hardClear.placeholder = cfg.hardClear.placeholder.trim();
}
}
return s;
}
|