get_paragraph_text_from_document
Extract text from a specified paragraph in a Word document by providing the filename and paragraph index for precise content retrieval and management.
Instructions
Get text from a specific paragraph in a Word document.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filename | Yes | ||
paragraph_index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"paragraph_index": {
"title": "Paragraph Index",
"type": "integer"
}
},
"required": [
"filename",
"paragraph_index"
],
"type": "object"
}