document_reader
Extract text and content from PDF, DOCX, TXT, HTML, and CSV files by specifying the file path. Ideal for processing and analyzing non-image document formats in document workflows.
Instructions
Read content from non-image document-files at specified paths, supporting various file formats: .pdf, .docx, .txt, .html, .csv
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Path to the file to be read |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "Path to the file to be read",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}