{% extends "base.html" %} {# CUI // SP-CTI #} {% block title %}{{ app_name }} — Visual Agent Builder{% endblock %} {% block content %}
Node Palette
{% set ai_nodes = [ ('llm_call', '🤖', 'LLM Call'), ('rag_query', '🔍', 'RAG Query'), ('fine_tune', '🎓', 'Fine-Tune Eval'), ('embedding', '🧮', 'Embedding'), ] %} {% for nid, icon, label in ai_nodes %}
{{ icon }} {{ label }}
{% endfor %} {% set sec_nodes = [ ('sast_scan', '🛡️', 'SAST Scan'), ('compliance_check', '✅', 'Compliance Check'), ('audit_log', '📋', 'Audit Log'), ] %} {% for nid, icon, label in sec_nodes %}
{{ icon }} {{ label }}
{% endfor %} {% set data_nodes = [ ('db_write', '💾', 'DB Write'), ('file_output', '📄', 'File Output'), ('api_call', '🌐', 'API Call'), ('notification', '🔔', 'Notification'), ] %} {% for nid, icon, label in data_nodes %}
{{ icon }} {{ label }}
{% endfor %}
Drag nodes from the palette to build your pipeline
Or click a node type to add it at center
Design Settings
{% endblock %} {% block styles %} {% endblock %} {% block scripts %} {% endblock %}