add_paragraph
Insert a new paragraph into a Word document by specifying the filename, text, and optional style. Enhances document editing with structured and formatted content.
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"
}