@exreve/exk 1.0.70 → 1.0.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/agentSession.js +8 -0
- package/dist/ttc-cli.tar.gz +0 -0
- package/package.json +1 -1
package/dist/cli/agentSession.js
CHANGED
|
@@ -719,6 +719,14 @@ export class AgentSessionManager {
|
|
|
719
719
|
resumeSessionId = session.sdkSessionId;
|
|
720
720
|
}
|
|
721
721
|
}
|
|
722
|
+
// Enable auto-compaction: trigger when context reaches ~150k (of 200k), keep default target
|
|
723
|
+
if (effectiveSettings) {
|
|
724
|
+
effectiveSettings.autoCompactEnabled = true;
|
|
725
|
+
effectiveSettings.autoCompactWindow = 150000;
|
|
726
|
+
}
|
|
727
|
+
else {
|
|
728
|
+
effectiveSettings = { autoCompactEnabled: true, autoCompactWindow: 150000 };
|
|
729
|
+
}
|
|
722
730
|
// Build backend config
|
|
723
731
|
const backendConfig = {
|
|
724
732
|
cwd: projectPath,
|
package/dist/ttc-cli.tar.gz
CHANGED
|
Binary file
|