{% set active_page = 'run' %} {% include '_nav.html' %}

Run models and inspect their outputs.

{% if dag_promptdata %}
Prompt Data

Pass text values into prompts, referenced with {{ '{{' }}promptdata("key"){{ '}}' }}.

{% for key in dag_promptdata %} {% endfor %}
{% endif %} {% if dag_promptfiles %}
Prompt Files

Upload files to use in prompts, referenced with {{ '{{' }}promptfile("file_name"){{ '}}' }}.

{% for name in dag_promptfiles %} {% endfor %}
{% endif %} {% if not dag_promptdata and not dag_promptfiles %}

No promptdata() or promptfile() variables detected in models.

{% endif %} {% if model_names %}
Select model

Select a model to return only its output. If none is selected, all models will be run and their outputs returned.

{% endif %}