{% extends "base.html" %} {% block title %}Agent Runtime Operator - AgomTradePro{% endblock %} {% block extra_css %} {% include "agent_runtime/_operator_styles.html" %} {% endblock %} {% block content %}

{{ page_title }}

任务列表、attention 队列和 proposal 状态总览。

{% include "agent_runtime/_summary_cards.html" %}

筛选

重置

Task List

{% for task in tasks %} {% empty %} {% endfor %}
Request Domain Status Task Type Attention Counts Updated
{{ task.request_id }} {{ task.task_domain }} {{ task.status }} {{ task.task_type }} {% if task.requires_human or task.status == "needs_human" or task.status == "failed" %} attention {% else %} normal {% endif %} {{ task.timeline_count }} events / {{ task.proposal_count }} proposals / {{ task.guardrail_count }} guardrails {{ task.updated_at|date:"Y-m-d H:i" }}
没有匹配的任务。

Task Counts

{% for status, count in summary.task_counts.items %}
{{ status }}
{{ count }}
{% empty %}
暂无任务数据。
{% endfor %}

Proposal Counts

{% for status, count in summary.proposal_counts.items %}
{{ status }}
{{ count }}
{% empty %}
暂无 proposal 数据。
{% endfor %}
{% endblock %}