{% if error %}
Error: {{ error }}
{% endif %} {% if outputs %}
{% for slot_name in slots_defined %} {% if slot_name in outputs %}
{{ slot_name }}
{% if outputs[slot_name] is mapping or (outputs[slot_name] is iterable and outputs[slot_name] is not string) %}
{{ outputs[slot_name] | tojson(indent=2) }}
{% else %}{{ outputs[slot_name] }}{% endif %}
{% endif %} {% endfor %}
{% else %}

No outputs yet. Run the prompt to see results.

{% endif %}