{% extends "base.html" %} {% load static %} {% load markdown_filters %} {% block title %}Agents - {{ playbook.name }}{% endblock %} {% block content %}

Agents in {{ playbook.name }}

AI assistants configured for activities in this playbook

{% if can_edit %} Create Agent {% endif %}
{% if agents %}
Agents {{ agents|length }}
{% for agent in agents %} {% endfor %}
Name Description Actions
{{ agent.name }} {{ agent.description|markdown|striptags|truncatewords:25 }}
{% else %}

No agents yet

There are no agents for this playbook yet.

Back to playbook
{% endif %}
{% endblock %}