{% load static %} RAGKit | Chat Assistant
{% if not chat.questions %}

Welcome to RAGKit

Ask a question below to start a conversation.

{% else %}
    {% for chat in chat.questions.all %}
  • {{ chat.question }}
  • {% if chat.generated_answer.answer %}
  • {{ chat.generated_answer.answer }}
  • {% endif %} {% endfor %}
{% endif %}
    {% csrf_token %}
    {{ form.question }}