/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { Config } from '../config/config.js'; import type { ToolInvocation, ToolResult } from './tools.js'; import { BaseDeclarativeTool } from './tools.js'; import type { ModifiableDeclarativeTool, ModifyContext } from './modifiable-tool.js'; import type { MessageBus } from '../confirmation-bus/message-bus.js'; /** * Parameters for the WriteFile tool */ export interface WriteFileToolParams { /** * The absolute path to the file to write to */ file_path: string; /** * The content to write to the file */ content: string; /** * Whether the proposed content was modified by the user. */ modified_by_user?: boolean; /** * Initially proposed content. */ ai_proposed_content?: string; } interface GetCorrectedFileContentResult { originalContent: string; correctedContent: string; fileExists: boolean; error?: { message: string; code?: string; }; } export declare function getCorrectedFileContent(config: Config, filePath: string, proposedContent: string, abortSignal: AbortSignal): Promise; /** * Implementation of the WriteFile tool logic */ export declare class WriteFileTool extends BaseDeclarativeTool implements ModifiableDeclarativeTool { private readonly config; static readonly Name = "write_file"; constructor(config: Config, messageBus: MessageBus); protected validateToolParamValues(params: WriteFileToolParams): string | null; protected createInvocation(params: WriteFileToolParams, messageBus: MessageBus): ToolInvocation; getSchema(modelId?: string): import("@google/genai").FunctionDeclaration; getModifyContext(abortSignal: AbortSignal): ModifyContext; } export {};