{% extends "base.html" %} {% import "_icons.html" as icons %} {% block title %}Vector store{% endblock %} {% block heading %}Vector store{% endblock %} {% block subhead %}

The SQLite RAG index that powers eidetic search.

{% endblock %} {% block head_aside %} {% if stats.available and stats.last_embed %} {{ icons.icon("refresh", 14) }} Embedded {{ stats.last_embed.age }} {% endif %} {% endblock %} {% block content %} {% if stats.available %}
{{ icons.icon("hash", 16) }}Chunks {{ '{:,}'.format(stats.chunk_count) }} {{ '%.1f' % stats.avg_chunks }} avg per file
{{ icons.icon("file", 16) }}Files indexed {{ '{:,}'.format(stats.file_count) }} {{ stats.files | length }} shown below
{{ icons.icon("database", 16) }}Database size {{ stats.db_size }} vectors.db
{{ icons.icon("layers", 16) }}Cached embeddings {{ '{:,}'.format(stats.cache_size) }} {% if stats.chunk_count %} {{ ((stats.cache_size / stats.chunk_count * 100) | round | int) }}% cache coverage {% else %}—{% endif %}
{{ icons.icon("server", 18) }}

Index details

Backend & freshness
{{ icons.icon("zap", 14) }} Search backend
{{ stats.backend }}
{{ icons.icon("refresh", 14) }} Last embed
{% if stats.last_embed %} {{ stats.last_embed.iso }} {{ icons.status_icon('warn' if stats.last_embed.stale else 'ok', 12) }} {{ stats.last_embed.age }}{{ ' · stale' if stats.last_embed.stale else '' }} {% else %} unknown {% endif %}
{{ icons.icon("database", 14) }} Database path
{{ stats.db_path }}
{{ icons.icon("gauge", 18) }}

Storage usage

{{ stats.db_size }} on disk
{{ icons.icon("hash", 13) }} Chunks{{ '{:,}'.format(stats.chunk_count) }}
{{ icons.icon("layers", 13) }} Cached{{ '{:,}'.format(stats.cache_size) }}
{{ icons.icon("file", 13) }} Files{{ '{:,}'.format(stats.file_count) }}
{% if stats.files %}
{{ icons.icon("folder", 18) }}

Indexed files

Top {{ stats.files | length }} by chunk count{{ ' · %d more not shown' % stats.files_truncated if stats.files_truncated else '' }}
{% endif %} {% else %}
{{ icons.icon("database", 32) }}

{{ stats.reason }}

{% if stats.rag_dir %}

{{ stats.rag_dir }}

{% endif %}
{% endif %} {% endblock %}