Files
DEMO-AGENT/templates/scenarios/index.html

24 lines
634 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<title>Universal Agent Demo Framework</title>
</head>
<body>
<h1>Universal Agent Demo Framework</h1>
<p>用于复试展示的通用 AI Agent Demo 框架。</p>
<main>
{% for scenario in scenarios %}
<section>
<h2>{{ scenario.name }}</h2>
<p>{{ scenario.description }}</p>
<p>场景 ID{{ scenario.id }}</p>
<p><a href="{% url 'chat:index' scenario.id %}">进入对话</a></p>
</section>
{% empty %}
<p>暂无可用场景,请检查 configs 目录。</p>
{% endfor %}
</main>
</body>
</html>