mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 20:31:37 -05:00
Minor UI changes; update copy
This commit is contained in:
@@ -162,7 +162,7 @@ const tools: Tool[] = [
|
||||
{
|
||||
name: "write_to_file",
|
||||
description:
|
||||
"Write content to a file at the specified path. If the file exists, only the necessary changes will be applied. If the file doesn't exist, it will be created. Always provide the full intended content of the file, without any truncation. This tool will automatically create any directories needed to write the file.",
|
||||
"Write content to a file at the specified path. If the file exists, it will be completely overwritten with the provided content (so do NOT omit unmodified sections). If the file doesn't exist, it will be created. This tool will automatically create any directories needed to write the file.",
|
||||
input_schema: {
|
||||
type: "object",
|
||||
properties: {
|
||||
@@ -172,7 +172,8 @@ const tools: Tool[] = [
|
||||
},
|
||||
content: {
|
||||
type: "string",
|
||||
description: "The full content to write to the file",
|
||||
description:
|
||||
"The full content to write to the file. Must be the full intended content of the file, without any omission or truncation.",
|
||||
},
|
||||
},
|
||||
required: ["path", "content"],
|
||||
|
||||
Reference in New Issue
Block a user