Use reserveTokens for branch summary (tokens left for prompt + response)

- tokenBudget = contextWindow - reserveTokens
- Default 16384, same as compaction
- Consistent naming with CompactionSettings.reserveTokens
This commit is contained in:
Mario Zechner 2025-12-29 21:36:23 +01:00
parent f5f39f08f1
commit dc5fc4fc40
3 changed files with 12 additions and 8 deletions

View file

@ -1656,7 +1656,7 @@ export class AgentSession {
apiKey,
signal: this._branchSummaryAbortController.signal,
customInstructions: options.customInstructions,
maxTokens: branchSummarySettings.maxTokens,
reserveTokens: branchSummarySettings.reserveTokens,
});
this._branchSummaryAbortController = undefined;
if (result.aborted) {