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

Пайплайны контента

Шаблоны
{% if not llm_configured %} {% endif %}
Новый pipeline
{% if llm_configured %}
Доступные переменные: {% for variable in prompt_variables %} {{ "{" }}{{ variable }}{{ "}" }}{% if not loop.last %}, {% endif %} {% endfor %}
{% if selected_phone %} Обновить кэш {{ selected_phone }} {% endif %}
Список targets берётся из dialog cache аккаунтов.
{% else %}

Настройте LLM провайдер для создания пайплайнов.

{% endif %}
{% if items %}
{% for item in items %} {% set pipeline = item.pipeline %} {% endfor %}
ID Название Sources Targets Backend Mode Интервал
{{ pipeline.id }}
{{ pipeline.name }}
{{ "active" if pipeline.is_active else "inactive" }}
{% for source_title in item.source_titles %}
{{ source_title }}
{% endfor %}
{% for target in item.targets %}
{{ target.phone }} → {{ target.title or target.dialog_id }}
{% endfor %}
{{ pipeline.generation_backend.value }} {{ pipeline.publish_mode.value }} {{ pipeline.generate_interval_minutes }} мин {% set nr = next_runs.get(pipeline.id) %} {% if nr %}
Next: {{ nr|local_dt }}
{% else %}
Не запланировано
{% endif %}
{% if not pipeline.pipeline_json %} {% endif %} Generate
JSON {% if pipeline.pipeline_json %} {% endif %}
Загрузка...
{% else %}

Пайплайнов пока нет.

{% endif %} {% endblock %}