File size: 8,788 Bytes
7a1ad33 | 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 | /**
* @license
* Copyright 2026 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {
LlmRole,
ToolOutputTruncatedEvent,
logToolOutputTruncated,
debugLogger,
type Config,
} from '../index.js';
import type { PartListUnion } from '@google/genai';
import { type GeminiClient } from '../core/client.js';
import { saveTruncatedToolOutput } from '../utils/fileUtils.js';
import {
READ_FILE_TOOL_NAME,
READ_MANY_FILES_TOOL_NAME,
} from '../tools/tool-names.js';
import {
truncateProportionally,
TOOL_TRUNCATION_PREFIX,
MIN_TARGET_TOKENS,
estimateCharsFromTokens,
normalizeFunctionResponse,
} from './truncation.js';
// Skip structural map generation for outputs larger than this threshold (in characters)
// as it consumes excessive tokens and may not be representative of the full content.
const MAX_DISTILLATION_SIZE = 1_000_000;
export interface DistilledToolOutput {
truncatedContent: PartListUnion;
outputFile?: string;
}
export class ToolOutputDistillationService {
constructor(
private readonly config: Config,
private readonly geminiClient: GeminiClient,
private readonly promptId: string,
) {}
/**
* Distills a tool's output if it exceeds configured length thresholds, preserving
* the agent's context window. This includes saving the raw output to disk, replacing
* the output with a truncated placeholder, and optionally summarizing the output
* via a secondary LLM call if the output is massively oversized.
*/
async distill(
toolName: string,
callId: string,
content: PartListUnion,
): Promise<DistilledToolOutput> {
// Explicitly bypass escape hatches that natively handle large outputs
if (this.isExemptFromDistillation(toolName)) {
return { truncatedContent: content };
}
const maxTokens = this.config.getToolMaxOutputTokens();
const thresholdChars = maxTokens * 4;
if (thresholdChars <= 0) {
return { truncatedContent: content };
}
const originalContentLength = this.calculateContentLength(content);
if (originalContentLength > thresholdChars) {
return this.performDistillation(
toolName,
callId,
content,
originalContentLength,
thresholdChars,
);
}
return { truncatedContent: content };
}
private isExemptFromDistillation(toolName: string): boolean {
return (
toolName === READ_FILE_TOOL_NAME || toolName === READ_MANY_FILES_TOOL_NAME
);
}
private calculateContentLength(content: PartListUnion): number {
if (typeof content === 'string') {
return content.length;
}
if (Array.isArray(content)) {
return content.reduce((acc, part) => {
if (typeof part === 'string') return acc + part.length;
if (part.text) return acc + part.text.length;
if (part.functionResponse?.response) {
// Estimate length of the response object
return acc + JSON.stringify(part.functionResponse.response).length;
}
return acc;
}, 0);
}
return 0;
}
private stringifyContent(content: PartListUnion): string {
if (typeof content === 'string') return content;
// For arrays or other objects, we preserve the structural JSON to maintain
// the ability to reconstruct the parts if needed from the saved output.
return JSON.stringify(content, null, 2);
}
private async performDistillation(
toolName: string,
callId: string,
content: PartListUnion,
originalContentLength: number,
threshold: number,
): Promise<DistilledToolOutput> {
const stringifiedContent = this.stringifyContent(content);
// Save the raw, untruncated string to disk for human review
const { outputFile: savedPath } = await saveTruncatedToolOutput(
stringifiedContent,
toolName,
callId,
this.config.storage.getProjectTempDir(),
this.promptId,
);
// If the output is massively oversized, attempt to generate an intent summary
let intentSummaryText = '';
const summarizationThresholdTokens =
this.config.getToolSummarizationThresholdTokens();
const summarizationThresholdChars = summarizationThresholdTokens * 4;
if (
originalContentLength > summarizationThresholdChars &&
originalContentLength <= MAX_DISTILLATION_SIZE
) {
const summary = await this.generateIntentSummary(
toolName,
stringifiedContent,
Math.floor(MAX_DISTILLATION_SIZE),
);
if (summary) {
intentSummaryText = `\n\n--- Strategic Significance of Truncated Content ---\n${summary}`;
}
}
// Perform structural truncation
const ratio = threshold / originalContentLength;
const truncatedContent = this.truncateContentStructurally(
content,
ratio,
savedPath || 'Output offloaded to disk',
intentSummaryText,
);
logToolOutputTruncated(
this.config,
new ToolOutputTruncatedEvent(this.promptId, {
toolName,
originalContentLength,
truncatedContentLength: this.calculateContentLength(truncatedContent),
threshold,
}),
);
return {
truncatedContent,
outputFile: savedPath,
};
}
/**
* Truncates content while maintaining its Part structure.
*/
private truncateContentStructurally(
content: PartListUnion,
ratio: number,
savedPath: string,
intentSummary: string,
): PartListUnion {
if (typeof content === 'string') {
const targetTokens = Math.max(
MIN_TARGET_TOKENS,
Math.floor((content.length / 4) * ratio),
);
const targetChars = estimateCharsFromTokens(content, targetTokens);
return (
truncateProportionally(content, targetChars, TOOL_TRUNCATION_PREFIX) +
`\n\nFull output saved to: ${savedPath}` +
intentSummary
);
}
if (!Array.isArray(content)) return content;
return content.map((part) => {
if (typeof part === 'string') {
const text = part;
const targetTokens = Math.max(
MIN_TARGET_TOKENS,
Math.floor((text.length / 4) * ratio),
);
const targetChars = estimateCharsFromTokens(text, targetTokens);
return truncateProportionally(
text,
targetChars,
TOOL_TRUNCATION_PREFIX,
);
}
if (part.text) {
const text = part.text;
const targetTokens = Math.max(
MIN_TARGET_TOKENS,
Math.floor((text.length / 4) * ratio),
);
const targetChars = estimateCharsFromTokens(text, targetTokens);
return {
text:
truncateProportionally(text, targetChars, TOOL_TRUNCATION_PREFIX) +
`\n\nFull output saved to: ${savedPath}` +
intentSummary,
};
}
if (part.functionResponse) {
return normalizeFunctionResponse(
part,
ratio,
0.2, // default headRatio
savedPath,
intentSummary,
);
}
return part;
});
}
/**
* Calls the secondary model to distill the strategic "why" signals and intent
* of the truncated content before it is offloaded.
*/
private async generateIntentSummary(
toolName: string,
stringifiedContent: string,
maxPreviewLen: number,
): Promise<string | undefined> {
try {
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), 15000); // 15s timeout
const promptText = `The following output from the tool '${toolName}' is large and has been truncated. Extract the most critical factual information from this output so the main agent doesn't lose context.
Focus strictly on concrete data points:
1. Exact error messages, exception types, or exit codes.
2. Specific file paths or line numbers mentioned.
3. Definitive outcomes (e.g., 'Compilation succeeded', '3 tests failed').
Do not philosophize about the strategic intent. Keep the extraction under 10 lines and use exact quotes where helpful.
Output to summarize:
${stringifiedContent.slice(0, maxPreviewLen)}...`;
const summaryResponse = await this.geminiClient.generateContent(
{ model: 'agent-history-provider-summarizer' },
[{ role: 'user', parts: [{ text: promptText }] }],
controller.signal,
LlmRole.UTILITY_COMPRESSOR,
);
clearTimeout(timeoutId);
return summaryResponse.candidates?.[0]?.content?.parts?.[0]?.text;
} catch (e) {
// Fail gracefully, summarization is a progressive enhancement
debugLogger.debug(
'Failed to generate intent summary for truncated output:',
e instanceof Error ? e.message : String(e),
);
return undefined;
}
}
}
|