多 Agent 决策工作坊

通过多角色辩论生成更全面的决策方案

工作流程指南

1
创建工作坊
2
配置角色
3
开始辩论
4
查看结果

工作坊列表

{% if workshops %} {% for workshop_id, workshop in workshops.items() %}

{{ workshop.name }}

{{ workshop.goal }}

角色数量: {{ workshop.roles|length }}

辩论内容: {{ workshop.debate_content|length }} 条观点

创建时间: {{ workshop.created_at.strftime('%Y-%m-%d %H:%M') if workshop.created_at else '未知' }}

{% if workshop.final_decision_time %}

最终决策时间: {{ workshop.final_decision_time.strftime('%Y-%m-%d %H:%M') }}

{% endif %}

最终决策: {% if workshop.final_decision %} {{ workshop.final_decision }} {% else %} 决策尚未确定 {% endif %}

{% if workshop.roles|length > 0 and workshop.debate_content|length > 0 %} 已完成辩论 {% elif workshop.roles|length > 0 %} 已配置角色 {% else %} 已创建 {% endif %}
{% endfor %} {% else %}
{% endif %}