{% extends "base.html" %} {% block title %}Recipes - Art-DAG L1{% endblock %} {% block content %}

Recipes

Recipes define processing pipelines for audio and media. Each recipe is a DAG of effects.

{% if recipes %}
{% for recipe in recipes %}
{{ recipe.name }} {% if recipe.version %} v{{ recipe.version }} {% endif %}
{% if recipe.description %}

{{ recipe.description }}

{% endif %}
{{ recipe.step_count or 0 }} steps {% if recipe.last_run %} Last run: {{ recipe.last_run }} {% endif %}
{% if recipe.tags %}
{% for tag in recipe.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}

No recipes available.

Recipes are defined in YAML format and submitted via API.

{% endif %}
{% endblock %}