{% extends "themis/base.html" %} {% block title %}{{ model.name }} — LLM Model{% endblock %} {% block content %}

{{ model.name }}

Edit Delete

Details

Display Name:{{ model.display_name|default:"—" }} API:{{ model.api.name }} Type:{{ model.get_model_type_display }} Active:{% if model.is_active %}Yes{% else %}No{% endif %} Context Window:{{ model.context_window|default:"—" }} tokens Max Output:{{ model.max_output_tokens|default:"—" }} tokens Dimensions:{{ model.vector_dimensions|default:"—" }}

Capabilities

{% if model.supports_cache %}Cache{% endif %} {% if model.supports_vision %}Vision{% endif %} {% if model.supports_multimodal %}Multimodal{% endif %} {% if model.supports_function_calling %}Functions{% endif %} {% if model.supports_json_mode %}JSON Mode{% endif %}

Pricing (per 1K tokens)

Input:${{ model.input_cost_per_1k }} Output:${{ model.output_cost_per_1k }} {% if model.cached_cost_per_1k %}Cached:${{ model.cached_cost_per_1k }}{% endif %}

System Defaults

{% if model.is_system_embedding_model %}System Embedding{% endif %} {% if model.is_system_chat_model %}System Chat{% endif %} {% if model.is_system_reranker_model %}System Reranker{% endif %} {% if not model.is_system_embedding_model and not model.is_system_chat_model and not model.is_system_reranker_model %} Not a system default {% endif %}
{% endblock %}