docx-save
Save DOCX files to a specified disk path using their unique ID. Enables document management by persisting changes and ensuring files are stored efficiently.
Instructions
Persist the docx to disk path by id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"type": "string"
},
"path": {
"type": "string"
}
},
"required": [
"id",
"path"
],
"type": "object"
}