Jump to document...
{% for doc in documents %}
Document {{ loop.index }}: {{ doc.id[:50] }}...
{% endfor %}
📝 Markdown View
Total documents: {{ documents|length }}
{% for doc in documents %} {% if loop.index > 1 %}
{% endif %}
{% if doc.metadata.source %}
Source:
{{ doc.metadata.source }}
{% endif %} {% if doc.metadata.olmocr_version %}
OlmOCR:
v{{ doc.metadata.olmocr_version }}
{% endif %} {% if doc.metadata.created %}
Created:
{{ doc.metadata.created }}
{% endif %} {% if doc.metadata.pdf_pages %}
Pages:
{{ doc.metadata.pdf_pages }}
{% endif %} {% if doc.metadata.tokens_in %}
Tokens In:
{{ doc.metadata.tokens_in }}
{% endif %} {% if doc.metadata.tokens_out %}
Tokens Out:
{{ doc.metadata.tokens_out }}
{% endif %} {% if doc.attributes.primary_language %}
Language:
{{ doc.attributes.primary_language[0] }}
{% endif %} {% if doc.attributes.rotation_correction %}
Rotation:
{{ doc.attributes.rotation_correction[0] }}°
{% endif %} {% if doc.metadata.source_file %}
File:
{{ doc.metadata.source_file }}
{% endif %}
{% for page in doc.pages %}
{% if page.image %}
{% endif %}
{% endfor %}
{% endfor %}