{% extends "base.html" %} {% block title %}Agents — PyAgent Studio{% endblock %} {% block content %}

Agents

{% for name, agent in agents.items() %} {% endfor %}
NameProviderPromptGuardrails
{{ name }} {{ agent.provider }} {{ agent.prompt[:50] }}{% if agent.prompt|length > 50 %}...{% endif %} {{ agent.guardrails|join(', ') }}
{% endblock %}