Re-enable read-de-dupe.

This commit is contained in:
Christian Gunderman
2026-02-18 18:25:25 +00:00
parent ad83541f7b
commit 64b3c6d60f
2 changed files with 2 additions and 1 deletions

View File

@@ -192,7 +192,7 @@ function pruneHistory(history: Content[]): Content[] {
return content;
});
}
\nfunction extractCuratedHistory(comprehensiveHistory: Content[]): Content[] {
function extractCuratedHistory(comprehensiveHistory: Content[]): Content[] {
if (comprehensiveHistory === undefined || comprehensiveHistory.length === 0) {
return [];
}

View File

@@ -162,6 +162,7 @@ ${result.llmContent}`;
*/
const readCache = new Map<string, ToolResult>();
export class ReadFileTool extends BaseDeclarativeTool<
ReadFileToolParams,
ToolResult