Skip to main content

Overview

The File Input tools allow you to fetch files from specified URLs.

Key Features

  • INPUT_PDF_FILE: Fetch PDF files from URLs.
  • INPUT_CSV_FILE: Fetch CSV files from URLs.
  • INPUT_DOCX_FILE: Fetch DOCX files from URLs and return the extracted text.
  • INPUT_JSON: Input JSON data directly.
  • INPUT_FILE: Input generic files from URLs.
  • INPUT_TEXT: Input plain text data directly.

Tools

INPUT_PDF_FILE

Fetch PDF files from URLs for processing. Input:
  • value (string, required): URL of the PDF file to fetch
Output:
  • File content and metadata for further processing

INPUT_CSV_FILE

Fetch CSV files from URLs for data processing. Input:
  • value (string, required): URL of the CSV file to fetch
Output:
  • CSV content and metadata

INPUT_DOCX_FILE

Fetch DOCX (Word) files from URLs and return the extracted text. Input: Output:
  • result: Text extracted from the DOCX file(s)

INPUT_JSON

Input JSON data directly as a string. Input:
  • value (string, required): JSON string to parse
Output:
  • Parsed JSON data ready for processing

INPUT_FILE

Input generic files from URLs. Input: Output: File content and metadata.

INPUT_TEXT

Input plain text data directly. Input:
  • value (string, required): Plain text content
Output:
  • Text content for processing

Examples

Example: Fetch Files from URLs

Example: JSON Data Processing

The following input tools are documented on other pages: