get_comments_by_author
Extract all comments written by a specific author from a Microsoft Word document to review or analyze their contributions.
Instructions
Extract comments from a specific author in a Word document.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author | Yes | ||
filename | Yes |
Input Schema (JSON Schema)
{
"properties": {
"author": {
"title": "Author",
"type": "string"
},
"filename": {
"title": "Filename",
"type": "string"
}
},
"required": [
"filename",
"author"
],
"type": "object"
}