{% extends "base.html" %} {% block title %}Dashboard - Memorizz{% endblock %} {% block content %}

Connected to {{ provider_type|title }}

{% for key, value in connection_info.items() %}
{{ key|title }}: {{ value }}
{% endfor %}
{{ stats.get('agents', 0) }} Agents
{{ stats.get('personas', 0) }} Personas
{{ stats.get('toolbox', 0) }} Tools
{{ stats.get('conversation_memory', 0) }} Conversations
{{ stats.get('workflow_memory', 0) }} Workflows
{{ stats.get('entity_memory', 0) }} Entities
{{ stats.get('summaries', 0) }} Summaries
{{ stats.get('semantic_cache', 0) }} Cache Entries
{% endblock %}