Parse Image File
lyzr_parse_imageExtract text from image files using OCR/VLM, then split content into manageable chunks for downstream processing.
Instructions
Parse an image file (e.g. via OCR/VLM) into text chunks.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filename | Yes | Original filename, including extension | |
| mime_type | No | MIME type of the file, e.g. 'application/pdf' | |
| chunk_size | No | Max characters per chunk (default 1000) | |
| extra_info | No | JSON string of extra metadata (default '{}') | |
| chunk_overlap | No | Character overlap between chunks (default 100) | |
| parser_config | No | JSON string of extra parser configuration | |
| file_content_base64 | Yes | Base64-encoded file content to parse |