{% if pending_actions %}
{% for action in pending_actions %}
{{ action.action }}
{{ action.node_uuid }}
attempts: {{ action.attempts }}
Created: {{ action.created_at[:19] | replace("T", " ") }}
{% if action.failure_reason %} Failed: {{ action.failure_reason }} {% endif %}
{% endfor %}
{% else %}

No pending LLM tasks.

{% endif %}