NdJson Index Übersicht Chunks (index.ndjson)
{% if ndjson.error %}
Fehler:
{{ ndjson.error }}
{{ ndjson.path|default('-') }}
{% endif %}
Datei vorhanden: {{ ndjson.path ? 'JA' : 'NEIN' }} |
Geladene Einträge: {{ debugCount|default(0) }} |
Seite {{ currentPage }} • Limit {{ currentLimit }}
| chunk_id |
document_id |
text (gekürzt) |
{% for item in ndjson.items|default([]) %}
| {{ item.chunk_id ?? '-' }} |
{{ item.document_id ?? '-' }} |
{% set text = item.text ?? '' %}
{{ text|slice(0, 240) }}{% if text|length > 240 %}…{% endif %}
JSON anzeigen
{{ item|json_encode(constant('JSON_PRETTY_PRINT')) }}
|
{% else %}
|
Keine Einträge gefunden.
|
{% endfor %}