{% extends "themis/base.html" %} {% block title %}LLM APIs{% endblock %} {% block content %}

LLM APIs

Add API
{% if apis %}
{% for api in apis %} {% endfor %}
Name Type Base URL Active Streaming Status Models Actions
{{ api.name }} {{ api.get_api_type_display }} {{ api.base_url }} {% if api.is_active %}Yes{% else %}No{% endif %} {% if api.supports_streaming %}Yes{% else %}—{% endif %} {% if api.last_test_status == "success" %}OK {% elif api.last_test_status == "failed" %}Failed {% else %}Pending{% endif %} {{ api.models.count }} Edit Delete
{% else %}
No APIs configured. Add one now.
{% endif %}
← Dashboard
{% endblock %}