Files
continue/core/tools/definitions/editFile.ts
Dallin Romney aa7ba35b00 read url tool
2025-06-11 11:22:13 -07:00

40 lines
1.2 KiB
TypeScript

import { Tool } from "../..";
import { BUILT_IN_GROUP_NAME, BuiltInToolNames } from "../builtIn";
export interface EditToolArgs {
filepath: string;
changes: string;
}
export const editFileTool: Tool = {
type: "function",
displayTitle: "Edit File",
wouldLikeTo: "edit {{{ filepath }}}",
isCurrently: "editing {{{ filepath }}}",
hasAlready: "edited {{{ filepath }}}",
group: BUILT_IN_GROUP_NAME,
readonly: false,
isInstant: false,
function: {
name: BuiltInToolNames.EditExistingFile,
description:
"Use this tool to edit an existing file. If you don't know the contents of the file, read it first.",
parameters: {
type: "object",
required: ["filepath", "changes"],
properties: {
filepath: {
type: "string",
description:
"The path of the file to edit, relative to the root of the workspace.",
},
changes: {
type: "string",
description:
"Any modifications to the file, showing only needed changes. Do NOT wrap this in a codeblock or write anything besides the code changes. In larger files, use brief language-appropriate placeholders for large unmodified sections, e.g. '// ... existing code ...'",
},
},
},
},
};