add_paragraph
Insert a paragraph into a Microsoft Word document. Specify the filename, text content, and optional style to enhance document formatting and structure.
Instructions
Add a paragraph to a Word document.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filename | Yes | ||
| style | No | ||
| text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filename": {
"title": "Filename",
"type": "string"
},
"style": {
"default": null,
"title": "Style",
"type": "string"
},
"text": {
"title": "Text",
"type": "string"
}
},
"required": [
"filename",
"text"
],
"type": "object"
}