{% extends "base.html" %} {% block title %}{{ site_title }} — overview{% endblock %} {% block content %}

Overview

Everything this project declares, and everything it has run.

{% for kind, n in counts.items() %}
{{ n }}
{{ kind }}s
{% endfor %}

Recent runs · see all

{% if runs %}
{% for run in runs %} {% endfor %}
RunKindTargetStatusStartedDuration
{{ run.short_id }} {{ run.kind }} {{ run.target }} {{ run.status }} {{ run.started_at.strftime('%Y-%m-%d %H:%M') }} {{ run.duration_s | duration }}
{% else %}

No runs yet. Try python manage.py train <Model>.

{% endif %}

Recent agent traces · see all

{% if traces %}
{% for t in traces %} {% endfor %}
TraceAgentInputStepsTokensStatus
{{ t.short_id }} {{ t.agent }} {{ t.input | short(70) }} {{ t.steps }} {{ t.total_tokens | number }} {{ t.status }}
{% else %}

No agent traces yet.

{% endif %}

Latest model versions · see all

{% if versions %}
{% for v in versions %} {% endfor %}
ModelVersionStageMetricsCreated
{{ v.label }} v{{ v.version }} {{ v.stage }} {% for k, val in (v.metrics or {}).items() %}{{ k }}={{ val | number }} {% endfor %} {{ v.created_at.strftime('%Y-%m-%d %H:%M') }}
{% else %}

No registered model versions yet.

{% endif %}

Latest dataset versions

{% if datasets %}
{% for d in datasets %} {% endfor %}
DatasetVersionRowsContent hashCreated
{{ d.label }} v{{ d.version }} {{ d.row_count | number }} {{ (d.content_hash or '')[:12] }} {{ d.created_at.strftime('%Y-%m-%d %H:%M') }}
{% else %}

Nothing materialised yet. Try python manage.py dataset materialize <Dataset>.

{% endif %}
{% endblock %}