/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { BaseTool, ToolResult, ToolEditConfirmationDetails } from './tools.js'; import { ModifiableTool, ModifyContext } from './modifiable-tool.js'; export declare const GEMINI_CONFIG_DIR = ".qwen"; export declare const DEFAULT_CONTEXT_FILENAME = "QWEN.md"; export declare const MEMORY_SECTION_HEADER = "## Qwen Added Memories"; export declare function setGeminiMdFilename(newFilename: string | string[]): void; export declare function getCurrentGeminiMdFilename(): string; export declare function getAllGeminiMdFilenames(): string[]; interface SaveMemoryParams { fact: string; modified_by_user?: boolean; modified_content?: string; } export declare class MemoryTool extends BaseTool implements ModifiableTool { private static readonly allowlist; static readonly Name: string; constructor(); getDescription(_params: SaveMemoryParams): string; /** * Reads the current content of the memory file */ private readMemoryFileContent; /** * Computes the new content that would result from adding a memory entry */ private computeNewContent; shouldConfirmExecute(params: SaveMemoryParams, _abortSignal: AbortSignal): Promise; static performAddMemoryEntry(text: string, memoryFilePath: string, fsAdapter: { readFile: (path: string, encoding: 'utf-8') => Promise; writeFile: (path: string, data: string, encoding: 'utf-8') => Promise; mkdir: (path: string, options: { recursive: boolean; }) => Promise; }): Promise; execute(params: SaveMemoryParams, _signal: AbortSignal): Promise; getModifyContext(_abortSignal: AbortSignal): ModifyContext; } export {};