{% extends "themis/base.html" %} {% block title %}LLM Manager — Dashboard{% endblock %} {% block content %}
Manage LLM APIs, models, and usage tracking.
{{ system_embedding_model.name }}
{{ system_embedding_model.api.name }}{% if system_embedding_model.vector_dimensions %} — {{ system_embedding_model.vector_dimensions }}d{% endif %}
{% else %}Not configured
{% endif %}{{ system_chat_model.name }}
{{ system_chat_model.api.name }}
{% else %}Not configured
{% endif %}{{ system_reranker_model.name }}
{{ system_reranker_model.api.name }}
{% else %}Not configured
{% endif %}| Name | Type | URL | Status | Last Tested |
|---|---|---|---|---|
| {{ api.name }} | {{ api.get_api_type_display }} | {{ api.base_url }} | {% if api.last_test_status == "success" %} OK {% elif api.last_test_status == "failed" %} Failed {% else %} Pending {% endif %} | {{ api.last_tested_at|default:"Never" }} |
| Time | Model | In | Out | Cost | Purpose |
|---|---|---|---|---|---|
| {{ u.timestamp|date:"M d H:i" }} | {{ u.model.name }} | {{ u.input_tokens }} | {{ u.output_tokens }} | ${{ u.total_cost|floatformat:4 }} | {{ u.get_purpose_display }} |