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

{{ opts.verbose_name_plural.title() }}

{{ opts.kind }} {{ opts.label }} {% if opts.description %}— {{ opts.description }}{% endif %}

Declaration

{% for f in schema.fields %} {% else %} {% endfor %}
FieldTypeRequiredDetail
{{ f.name }}{% if f.target %} target{% endif %} {{ f['class'] }} {{ 'yes' if f.required else 'no' }} {%- for k, v in f.items() if k not in ('name','class','kind','required','null','target') -%} {{ k }}={{ v | short(40) }}{% if not loop.last %}, {% endif %} {%- endfor -%}
No fields declared.
{% if summary %}

Configuration

{% for k, v in summary.items() %}
{{ k }}
{{ v | short(300) }}
{% endfor %}
{% endif %} {% if opts.kind == 'dataset' %}

Data preview

{% if entry.get_search_fields() %} {% endif %} {% for name, values in filter_values.items() %} {% endfor %}
{% if preview_error %}

Could not read the source: {{ preview_error }}

{% elif rows %}
{% for c in columns %}{% endfor %} {% for row in rows %} {% for c in columns %}{% endfor %} {% endfor %}
{{ c }}
{{ entry.render(row, c) }}
{% if page_no > 1 %}← previous{% endif %} page {{ page_no }} {% if has_next %}next →{% endif %}
{% else %}

No rows matched.

{% endif %}

Materialised versions

{% if versions %}
{% for v in versions %} {% endfor %}
VersionRowsSchemaContentNotesCreated
v{{ v.version }} {{ v.row_count | number }} {{ v.fingerprint }} {{ (v.content_hash or '')[:12] }} {{ v.notes | short(60) }} {{ v.created_at.strftime('%Y-%m-%d %H:%M') }}
{% else %}

Not materialised yet.

{% endif %}
{% endif %} {% if opts.kind == 'model' %}

Registered versions

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

Not trained yet.

{% endif %}
{% endif %} {% if opts.kind in ('model', 'eval') %}

Runs

{% if runs %}
{% for run in runs %} {% endfor %}
RunStatusSummaryStartedDuration
{{ run.short_id }} {{ run.status }} {% for k, val in (run.summary or {}).items() %}{{ k }}={{ val | number }} {% endfor %} {{ run.started_at.strftime('%Y-%m-%d %H:%M') }} {{ run.duration_s | duration }}
{% else %}

No runs yet.

{% endif %}
{% endif %} {% if opts.kind == 'agent' %}

Recent traces

{% if traces %}
{% for t in traces %} {% endfor %}
TraceInputOutputStepsTokensStatus
{{ t.short_id }} {{ t.input | short(50) }} {{ t.output | short(50) }} {{ t.steps }} {{ t.total_tokens | number }} {{ t.status }}
{% else %}

This agent has not run yet.

{% endif %}
{% endif %} {% endblock %}