{% extends "base.html" %} {% from "partials/_inventory_states.html" import empty_state, error_state %} {% block title %}Models · FreeWeight{% endblock %} {% block content %}

Models

{% include "partials/_csrf.html" %}
{% if last_discovery %} {% if last_discovery.ok %}

Last refresh {{ last_discovery.checked_at | timestamp }}: {{ last_discovery.detail }} (added {{ last_discovery.added }}, updated {{ last_discovery.updated }}, unchanged {{ last_discovery.unchanged }}).

{% else %} {% endif %} {% endif %} {% if error %} {{ error_state(error) }} {% elif models %} {% for model in models %} {% endfor %}
{{ models | length }} model identity(ies) recorded.
Canonical ID Provider Name Digest Confidence Quantization Parameters Context First seen Last seen
{{ model.canonical_id }} {{ model.provider_kind }} {{ model.provider_model_name }} {{ model.artifact_digest or "—" }} {{ model.identity_confidence }} {{ model.quantization or "—" }} {{ model.parameter_count if model.parameter_count is not none else "—" }} {{ model.max_context if model.max_context is not none else "—" }} {{ model.first_seen_at | timestamp }} {{ model.last_seen_at | timestamp }}
{% else %} {{ empty_state( "models", "Model identities are recorded by discovery through ModelRack. Click \"Refresh from provider\" above, or run freeweight models refresh, to discover what your provider is serving; until then this table is real and empty rather than absent.") }} {% endif %} {% endblock %}