You're looking at a specific version of this model. Jump to the model overview.
Input schema
The fields you can use to run this model with an API. If you don’t give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
image |
string
|
Input document image to parse (JPG, JPEG, PNG formats supported).
|
|
parsing_level |
string
(enum)
|
page
Options: page, element |
Parsing level: 'page' for full document analysis, or 'element' for specific element parsing.
|
element_type |
string
(enum)
|
text
Options: text, table, formula |
Type of element if parsing_level is 'element'. Choose from 'text', 'table', 'formula'. Ignored if parsing_level is 'page'.
|
max_batch_size |
integer
|
16
Min: 1 |
Maximum number of document elements to parse in a single batch (primarily relevant for 'page' parsing).
|
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{'description': 'Output model for DOLPHIN document parsing results.\n'
'\n'
'When using page-level parsing, the API returns both '
'structured JSON data\n'
'and formatted Markdown content. For element-level parsing, it '
'returns\n'
'the extracted text content directly.',
'properties': {'json_content': {'title': 'Json Content', 'type': 'object'},
'markdown_content': {'title': 'Markdown Content',
'type': 'string'},
'text_content': {'title': 'Text Content', 'type': 'string'}},
'title': 'DolphinOutput',
'type': 'object'}