@bastani/atomic 0.8.26 → 0.8.27-alpha.1
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/CHANGELOG.md +4 -0
- package/dist/builtin/intercom/package.json +1 -1
- package/dist/builtin/mcp/package.json +1 -1
- package/dist/builtin/subagents/package.json +1 -1
- package/dist/builtin/web-access/package.json +1 -1
- package/dist/builtin/workflows/package.json +1 -1
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +1 -1
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/compaction/context-compaction.d.ts +1 -2
- package/dist/core/compaction/context-compaction.d.ts.map +1 -1
- package/dist/core/compaction/context-compaction.js +118 -177
- package/dist/core/compaction/context-compaction.js.map +1 -1
- package/package.json +1 -3
|
@@ -1490,7 +1490,7 @@ export class AgentSession {
|
|
|
1490
1490
|
if (!preparation) {
|
|
1491
1491
|
return undefined;
|
|
1492
1492
|
}
|
|
1493
|
-
const validated = await runContextCompact(preparation, this.model, options.apiKey, options.headers, options.abortController.signal,
|
|
1493
|
+
const validated = await runContextCompact(preparation, this.model, options.apiKey, options.headers, options.abortController.signal, this.thinkingLevel, mode);
|
|
1494
1494
|
if (options.abortController.signal.aborted) {
|
|
1495
1495
|
throw new Error("Compaction cancelled");
|
|
1496
1496
|
}
|