add_table
Create and insert a table into a Word document by specifying rows, columns, and optional data. Simplifies document formatting for structured content.
Instructions
Add a table to a Word document.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cols | Yes | ||
data | No | ||
filename | Yes | ||
rows | Yes |
Input Schema (JSON Schema)
{
"properties": {
"cols": {
"title": "Cols",
"type": "integer"
},
"data": {
"default": null,
"items": {},
"title": "Data",
"type": "array"
},
"filename": {
"title": "Filename",
"type": "string"
},
"rows": {
"title": "Rows",
"type": "integer"
}
},
"required": [
"filename",
"rows",
"cols"
],
"type": "object"
}