{% extends "base.html" %} {% from "macros.html" import cost, pct %} {% block title %}Cache · LLM Admin{% endblock %} {% block content %}
| Agent | Runs | Hit rate | Total cost |
|---|---|---|---|
| {{ r.agent_type }} | {{ r.total_runs }} | {{ pct(r.hit_rate) }} | {{ cost(r.total_cost) }} |
No runs in the window.
{% endif %}| ID | Agent | Model | Hits | Last hit | Created | Source run |
|---|---|---|---|---|---|---|
| #{{ e.id }} | {{ e.agent_type }} | {{ e.model }} | {{ e.hit_count }} | {{ e.last_hit_at or '—' }} | {{ e.created_at }} | #{{ e.source_run_id }} |
No cache entries yet.
{% endif %} {% endblock %}