{% extends "base.html" %} {% block title %}Шаблоны пайплайнов — TG Agent{% endblock %} {% block content %}

Шаблоны пайплайнов

← Назад к пайплайнам

Выберите шаблон для создания нового пайплайна. Шаблоны содержат готовые наборы нод — вы можете настроить их после создания с помощью AI-редактора.

{% set categories = [] %} {% for tpl in templates %} {% if tpl.category not in categories %} {% set _ = categories.append(tpl.category) %} {% endif %} {% endfor %} {% for category in categories %}

{{ category|capitalize }}

{% for tpl in templates %} {% if tpl.category == category %}
{{ tpl.name }} {% if tpl.is_builtin %}builtin{% endif %}

{{ tpl.description }}

{% for node in tpl.template_json.nodes %} {{ node.type.value }} {% endfor %}
{{ tpl.template_json.to_json() }}
{% endif %} {% endfor %}
{% endfor %} {% if not templates %}

Шаблонов пока нет.

{% endif %} {% endblock %}