{% extends "base.html" %} {% from "_macros.html" import icon %} {% block title %}Шаблоны пайплайнов — TG Agent{% endblock %} {% block content %}
Выберите шаблон для создания нового пайплайна. Шаблоны содержат готовые наборы нод — вы можете настроить их после создания с помощью AI-редактора.
{% set category_icons = { "content": "bi-pencil-square", "automation": "bi-gear", "moderation": "bi-shield-check", "monitoring": "bi-eye", } %} {% set node_icons = { "source": "bi-box-arrow-in-right", "retrieve_context": "bi-search", "llm_generate": "bi-stars", "llm_refine": "bi-pencil", "image_generate": "bi-image", "publish": "bi-send", "notify": "bi-bell", "filter": "bi-funnel", "delay": "bi-clock", "react": "bi-emoji-smile", "forward": "bi-reply-all", "delete_message": "bi-trash", "fetch_messages": "bi-cloud-download", "condition": "bi-signpost-split", "search_query_trigger": "bi-search", "agent_loop": "bi-robot", } %} {% set categories = [] %} {% for tpl in templates %} {% if tpl.category not in categories %} {% set _ = categories.append(tpl.category) %} {% endif %} {% endfor %} {% for category in categories %}{{ tpl.description }}
{{ tpl.template_json.to_json() }}
Шаблонов пока нет.