Update descriptions

This commit is contained in:
Cyprian Zdebski
2025-04-17 22:58:24 +02:00
parent 7a8b723485
commit 9df618eb3d

View File

@@ -294,18 +294,18 @@ class PutContentToolHandler(ToolHandler):
def get_tool_description(self): def get_tool_description(self):
return Tool( return Tool(
name=self.name, name=self.name,
description="Update content of a new or existing file in the vault.", description="Create a new file in your vault or update the content of an existing one in your vault.",
inputSchema={ inputSchema={
"type": "object", "type": "object",
"properties": { "properties": {
"filepath": { "filepath": {
"type": "string", "type": "string",
"description": "Path to the file (relative to vault root)", "description": "Path to the relevant file (relative to your vault root)",
"format": "path" "format": "path"
}, },
"content": { "content": {
"type": "string", "type": "string",
"description": "Content of the file you would like to update" "description": "Content of the file you would like to upload"
} }
}, },
"required": ["filepath", "content"] "required": ["filepath", "content"]
@@ -322,7 +322,7 @@ class PutContentToolHandler(ToolHandler):
return [ return [
TextContent( TextContent(
type="text", type="text",
text=f"Successfully updated content in {args['filepath']}" text=f"Successfully uploaded content to {args['filepath']}"
) )
] ]