Minor UI changes; update copy

This commit is contained in:
Saoud Rizwan
2024-08-16 23:36:39 -04:00
parent 5b944b80e2
commit 38f98951d0
8 changed files with 38 additions and 33 deletions

View File

@@ -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"],