parseFileToText
Extract text from files via a public URL. Supports formats like PDF, DOCX, CSV, and more. Returns the parsed text as a string for further use.
Instructions
Provide a file url, parse the file to text, return the text as a string.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | Public URL of the source file, supports pdf/docx/csv/txt/html/odt/rtf/epub/md/xml/xsl/pptx/potx/js/cs |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "Public URL of the source file, supports pdf/docx/csv/txt/html/odt/rtf/epub/md/xml/xsl/pptx/potx/js/cs",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}