{% extends "base.html" %} {% block title %}Agents — PyAgent Studio{% endblock %} {% block content %} {% include "_bp_banner.html" %}
{{ agents|length }} agent{{ '' if agents|length == 1 else 's' }} defined{% if blueprint_name %} in {{ blueprint_name }}{% endif %}.
| Name | Provider | Tools | Guardrails |
|---|---|---|---|
| {{ name }} | {{ agent.provider }} | {{ agent.tools|join(', ') if agent.tools else '—' }} | {{ agent.guardrails|join(', ') if agent.guardrails else '—' }} |
| No agents defined. | |||
{{ detail.description or 'No description.' }}
{{ detail.prompt }}
{% else %}
Select an agent to see its prompt, tools, and guardrails.
{% endif %}