create_document
Generate a new Microsoft Word document with customizable metadata such as filename, title, and author. Ideal for managing and organizing documents efficiently.
Instructions
Create a new Word document with optional metadata.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author | No | ||
filename | Yes | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"author": {
"default": null,
"title": "Author",
"type": "string"
},
"filename": {
"title": "Filename",
"type": "string"
},
"title": {
"default": null,
"title": "Title",
"type": "string"
}
},
"required": [
"filename"
],
"type": "object"
}