{% if stats.total_chunks > 0 %}
Total chunks
{{ stats.total_chunks }}
{% if stats.unique_posts is defined %}
Unique posts
{{ stats.unique_posts }}
{% endif %} {% if stats.unique_channels is defined %}
Channels
{{ stats.unique_channels }}
{% endif %} {% if stats.db_path is defined %}
Store path
{{ stats.db_path }}
{% endif %}
{% elif stats.status == 'not_configured' %}

No vector store configured. Set rag_db_path when starting the workshop.

{% elif stats.error is defined %}

Error: {{ stats.error }}

{% else %}

Vector store is empty. Ingest some data first.

{% endif %}