Test LLM Models

{% if not llmchat_enabled %}

LLM Chat is currently disabled

{% else %}

Test configured LLM providers and models.

{{ stats.total_providers }}
Providers
{{ stats.total_models }}
Models
{% endif %}
{% if llmchat_enabled %}

Available Models

{% if models %}
{% for model in models %} {% endfor %}
Provider Model Name Model ID Capabilities
{{ model.provider.name if model.provider else 'Unknown' }} {{ model.model_name }} {{ model.model_id }} {% if model.supports_chat %}Chat{% endif %} {% if model.supports_streaming %}Stream{% endif %} {% if model.supports_vision %}Vision{% endif %} {% if model.supports_function_calling %}Tools{% endif %}
{% else %}

No models configured. Add models in the Models tab.

{% endif %}

Test Model

{% endif %}