{% extends "base.html" %} {% block title %}Workflows — PyAgent Studio{% endblock %} {% block content %} {% include "_bp_banner.html" %}
Blueprint

Workflows

{{ workflows|length }} workflow{{ '' if workflows|length == 1 else 's' }} defined{% if blueprint_name %} in {{ blueprint_name }}{% endif %}.

{% for name, wf in workflows.items() %} {% else %} {% endfor %}
NamePatternAgentsGuardrails
{{ name }} {{ wf.pattern }} {{ wf.agents.keys()|list|join(', ') if wf.agents else '—' }} {{ wf.guardrails|join(', ') if wf.guardrails else '—' }}
No workflows defined.
{% if mermaid %}

Agent graph

{{ mermaid }}
{% endif %} {% endblock %}