VisionOutputFormat

public enum VisionOutputFormat

Format of content returned by and .

Entries

Link copied to clipboard

Structured JSON with elements sorted by reading order (default). Contains paragraph text, tables, key-value regions, word-level coordinates, and per-page metadata.

Link copied to clipboard

Markdown text optimized for human reading and LLM consumption. Uses standard markdown primitives (headings, paragraphs, tables, blockquotes for footnotes). Loses structural information like coordinates.

Link copied to clipboard

IR Lite intermediate representation optimized for LLM position retrieval. Preserves spatial coordinates with a compact token-efficient format.

Functions

Link copied to clipboard
public static VisionOutputFormat valueOf(String name)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard
public static Array<VisionOutputFormat> values()

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.