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

LLM Models

Add Model
Filter API: All {% for api in apis %} {{ api.name }} {% endfor %}
{% if models %}
{% for m in models %} {% endfor %}
Name API Type Context Dims $/1K In $/1K Out Active System Actions
{{ m.name }} {{ m.api.name }} {{ m.get_model_type_display }} {{ m.context_window|default:"—" }} {{ m.vector_dimensions|default:"—" }} ${{ m.input_cost_per_1k }} ${{ m.output_cost_per_1k }} {% if m.is_active %}{% else %}{% endif %} {% if m.is_system_embedding_model %}Embed{% endif %} {% if m.is_system_chat_model %}Chat{% endif %} {% if m.is_system_reranker_model %}Rerank{% endif %} Edit
{% else %}
No models found.
{% endif %}
← Dashboard
{% endblock %}