CondoGPT
{% if result %}
Result:
{% for res in result %}
{{ res }}
{% endfor %}
{% endif %} {% if conversation_history %}
Conversation History:
{% for entry in conversation_history %}
Q: {{ entry.question }}
A: {{ entry.answer }}
{% endfor %}
{% endif %}