optimize texts retrieval
This commit is contained in:
@@ -77,13 +77,37 @@
|
||||
</h5>
|
||||
|
||||
<div style="max-height: 500px; overflow-y: auto;">
|
||||
|
||||
{% for chunk in results %}
|
||||
<div class="border border-secondary p-3 mb-3 small">
|
||||
{{ chunk|nl2br }}
|
||||
|
||||
{# ================= META-ZEILE ================= #}
|
||||
<div class="mb-2 text-warning" style="font-size: 11px; line-height: 1.4;">
|
||||
<span class="text-info"><strong>rank:</strong> {{ chunk.rank }}</span> |
|
||||
<span class="text-info"><strong>chunk_id:</strong> {{ chunk.chunk_id }}</span> |
|
||||
<span class="text-info"><strong>document_id:</strong> <a
|
||||
class="text-info"
|
||||
href="{{ path('admin_document_show', { id: chunk.document_id }) }}">
|
||||
{{ chunk.document_id }}
|
||||
</a></span> |
|
||||
<span><strong>raw_score:</strong> {{ chunk.raw_score|number_format(6, '.', '') }}</span>
|
||||
|
|
||||
<span><strong>rrf_score:</strong> {{ chunk.rrf_score|number_format(6, '.', '') }}</span>
|
||||
|
|
||||
<span><strong>threshold:</strong> {{ chunk.threshold }}</span> |
|
||||
<span><strong>intent:</strong> {{ chunk.intent }}</span> |
|
||||
<span>
|
||||
<strong>is_list_query:</strong>
|
||||
{{ chunk.is_list_query ? 'true' : 'false' }}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
{# ================= CHUNK TEXT ================= #}
|
||||
<div>
|
||||
{{ chunk.text }}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user