Domains
{{ memory_summary.domains }}
{% extends "base.html" %}
{% set page_title = "Memory" %}
{% block title %}Memory | Suvra{% endblock %}
{% block content %}
{% raw %}
{% endraw %}
Vector-backed knowledge domains and per-agent memory. Turn local signals into institutional knowledge that compounds over time. {{ memory_summary.domains }} {{ memory_summary.documents }} {{ memory_summary.chunks }} {{ memory_summary.index_size_mb }} MB {{ domain.description }}Institutional Memory
Domains
Documents
Chunks
Index Size
Knowledge Domains
Recent Documents
{% for doc in documents %}
Title Source Chunks Created
{% endfor %}
{{ doc.title }}
{{ doc.source }}
{{ doc.chunk_count }}
{{ doc.created_at[:10] if doc.created_at else '—' }}
Create your first domain:
curl -X POST localhost:8000/v2/memory/domains \
-H 'Content-Type: application/json' \
-d '{"domain_id": "runbooks", "name": "runbooks", "description": "Ops runbooks"}'