{% extends "base.html" %} {% set active = 'index' %} {% block content %}

{{ project.name }}

family {{ project.family }} · {{ project.description or '—' }}

{{ status.nodes_total }}
节点
{{ status.edges_total }}
{{ status.docs|length }}
文档
{{ status.vector_count }}
向量

节点分布

{% for kind, count in status.by_kind.items() %}
{{ kind }} {{ count }}
{% endfor %}

边分布

{% for kind, count in status.by_edge_kind.items() %}
{{ kind }} {{ count }}
{% endfor %}

文档

{% endblock %}