{% extends "base.html" %} {% block content %}

RAG Bots Management

Available RAG Bots

{% if agents %}
{% for agent in agents %}

{{ agent.name }}

  • Classification: {% if agent.use_classification %} ✓ Enabled {% else %} ✗ Disabled {% endif %}
  • RAG: {% if agent.use_rag %} ✓ Enabled {% else %} ✗ Disabled {% endif %}
  • RAG Top-K: {{ agent.rag_top_k }}
  • Include Incorrect History: {% if agent.include_incorrect_history %} ✓ Yes {% else %} ✗ No {% endif %}
{% endfor %}
{% else %}

No RAG bots configured. Default bots will be created on first run.

{% endif %}

Test RAG Bot

{% endblock %}