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

Ask Document AI

Query your selected vector database.

{% if answer %}
AI Response
{{ answer }}
{% endif %}
Conversation History
{% if history %}
{% for question, ans in history %}
You:
{{ question }}
AI:
{{ ans }}
{% endfor %}
{% else %}

Your conversation history will appear here.

{% endif %}
{% endblock %}