{% extends "admin/_layout.html" %} {% from "_macros.html" import icon %} {% set section = "images" %} {% block title %}{{ workflow.name or "New workflow" }} - LLeMbas{% endblock %} {% block heading %}{{ workflow.name or "New workflow" }}{% endblock %} {% block admin_content %} {% if error %}
{{ icon("warning", "icon--sm") }} {{ error }}
{% endif %}

What it is

Shown to you, in the list.

Lowercase letters, digits, hyphens and underscores. This is what the model writes when it picks this workflow.

The only thing the model has to choose with, so say what this is for rather than what it contains. It never sees the graph.

The workflow

Export this from ComfyUI with Export (API), not Save — the two formats are different and only the API one can be submitted.

Then put a placeholder where each value goes. A placeholder that is the whole value keeps its type, so "steps": {{ '{{steps}}' }} sends the number 20 rather than the text “20”; one inside a longer string is substituted as text, so "{{ '{{prompt}}' }}, masterpiece" works. Anything you leave out takes its default.

Available: {% for name in placeholders %}{{ '{{' ~ name ~ '}}' }}{{ ", " if not loop.last }}{% endfor %}. {{ '{{prompt}}' }} is required — without it every image would be the same.

Back {% if not is_new %} {% endif %}
{% endblock %}