{{ result.metadata.name }}

Type: Transform

{% if result.metadata.model_name %}

Model: {{ result.metadata.model_name }}

{% endif %} {% if result.prompt %}
Prompt (click to expand)
{{ result.prompt }}
{% endif %} {% if result.slot_dataframes %}
Structured Output:
{% for slot_name, df in result.slot_dataframes.items() %}
{{ slot_name }} ({{ df|length }} items)
{{ df|df_to_html|safe }}
{% endfor %}
{% endif %} {% if result.response_text %}
Full Response Text (click to expand)
{% markdown %} {{ result.response_text }} {% endmarkdown %}
{% endif %}