{% extends "base.html" %} {% from "partials/_inventory_states.html" import empty_state, error_state %} {% block title %}Models · FreeWeight{% endblock %} {% block content %}
Last refresh {{ last_discovery.checked_at | timestamp }}: {{ last_discovery.detail }} (added {{ last_discovery.added }}, updated {{ last_discovery.updated }}, unchanged {{ last_discovery.unchanged }}).
{% else %}Data may be stale. The last refresh attempt, {{ last_discovery.checked_at | timestamp }}, failed: {{ last_discovery.detail }}. The models below are what was last discovered successfully.
{% endif %} {% endif %} {% if error %} {{ error_state(error) }} {% elif models %}| 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 }} |