{% extends "base.html" %} {% block title %}Runs - riff-observe{% endblock %} {% block content %}

Agent Runs

{% if runs %} {% for run in runs %} {% endfor %}
Name Status Risk Tools Models Duration Started Tags
{{ run.name }}
{{ run.run_id[:8] }}...
{{ run.status or 'unknown' }} {{ run.risk_score if run.risk_score is not none else '-' }} {{ run.tool_calls or 0 }} {{ run.model_calls or 0 }} {{ run.latency_ms|format_duration }} {{ run.ts_start|format_timestamp }}
{% for tag in run.eval_tags or [] %} {{ tag }} {% endfor %}
{% else %}

No runs found.

Run your agent with observe.install() to start collecting data.

{% endif %} {% endblock %}