{% extends "themis/base.html" %} {% block nav_items_desktop %}
  • Dashboard
  • Libraries
  • Search
  • LLM Manager
  • API Keys
  • {% endblock %} {% block nav_items %}
  • Dashboard
  • Libraries
  • Search
  • LLM Manager
  • API Keys
  • {% endblock %} {% block title %}Dashboard โ€” Mnemosyne{% endblock %} {% block content %}

    Dashboard

    Welcome back, {{ user.username }}.

    Libraries
    {% if library_count is not None %}{{ library_count }}{% else %}โ€”{% endif %}
    {% if library_count is None %}Neo4j offline{% else %}Content collections{% endif %}
    Active APIs
    {{ api_count }}
    LLM providers
    LLM Models
    {{ model_count }}
    Available models
    Your Keys
    ๐Ÿ”‘
    Manage API keys

    System Models

    Embedding Model

    {% if system_embedding %}

    {{ system_embedding.name }}

    {{ system_embedding.api.name }}{% if system_embedding.vector_dimensions %} ยท {{ system_embedding.vector_dimensions }}d{% endif %}

    {% else %}

    Not configured โ€” set via Django admin

    {% endif %}

    Chat Model

    {% if system_chat %}

    {{ system_chat.name }}

    {{ system_chat.api.name }}

    {% else %}

    Not configured โ€” set via Django admin

    {% endif %}

    Quick Actions

    Search Knowledge New Library Add LLM API Add API Key Profile Settings {% if user.is_staff %} Django Admin {% endif %}
    {% endblock %}