create_document
Generate Word documents programmatically by specifying file path, title, and author. Integrates with AI to simplify document creation through natural language commands.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
author | No | ||
filePath | Yes | ||
title | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"author": {
"type": "string"
},
"filePath": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}