extract_text
Extract plain text from .docx files for simplified content access and processing, ensuring compatibility with text-based workflows.
Instructions
Extract plain text content from a DOCX file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes | Path to the .docx file |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"file_path": {
"description": "Path to the .docx file",
"type": "string"
}
},
"required": [
"file_path"
],
"type": "object"
}