{% extends "base.html" %} {% block content %}

Configuration

Models

All configured LLM providers and their models, with performance indicators and score dimensions.

{% if providers %} {% for provider in providers %}

{{ provider.id }}

{{ provider.type }} {% if default_provider == provider.id %} default {% endif %}
{{ provider.endpoint }}
{% if provider.models %}
{% for m in provider.models %}
{{ m.id }} {% if default_provider == provider.id and default_model == m.id %} default {% endif %} {{ m.role }}
{% for f in m.features %} {{ f }} {% endfor %}
{# Indicators row #}
{# Cost #}
Cost {% if m.cost is not none %}
{{ m.cost }}/10 {% else %} {% endif %}
{# Speed #}
Speed {% if m.speed is not none %}
{{ m.speed }}/10 {% else %} {% endif %}
{# Scores #} {% for dim, val in m.scores.items() %}
{{ dim }}
{{ val }}/10
{% endfor %}
{% endfor %}
{% else %}

No models configured for this provider.

{% endif %}
{% endfor %} {% else %}

No providers configured. Add providers to the llm.providers section of your config file.

{% endif %} {% endblock %}