Google Drive
GOOGLEDRIVE_CREATE_COMMENT
Tool to create a comment on a file. use when you need to add a new comment to a specific file in google drive.
Remote googledrive
Other tools also called GOOGLEDRIVE_CREATE_COMMENT?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"anchor": {
"type": "string",
"title": "Anchor",
"default": null,
"examples": [
"{\"type\": \"line\", \"line\": 12}"
],
"nullable": true,
"description": "A JSON string representing the region of the document to which the comment is anchored (e.g., {'type': 'line', 'line': 12})."
},
"content": {
"type": "string",
"title": "Content",
"examples": [
"This is a great document!"
],
"description": "The plain text content of the comment."
},
"file_id": {
"type": "string",
"title": "File Id",
"examples": [
"1a2b3c4d5e6f7g8h9i0j"
],
"description": "The ID of the file."
},
"quoted_file_content_value": {
"type": "string",
"title": "Quoted File Content Value",
"default": null,
"examples": [
"This is the text to quote."
],
"nullable": true,
"description": "The quoted content itself."
},
"quoted_file_content_mime_type": {
"type": "string",
"title": "Quoted File Content Mime Type",
"default": null,
"examples": [
"text/plain"
],
"nullable": true,
"description": "The MIME type of the quoted content."
}
}
}