🧠SQL Assistant (LangChain + Ollama)
{% if ddl_mode %}
DDL Statements:
SQLite DB Path:
Start Chat
{% else %}
{% for chat in chat_history %}
You:
{{ chat.question }}
SQL:
{{ chat.sql }}
{% if chat.error %}
Error: {{ chat.error }}
{% elif chat.result %}
Result:
{% for row in chat.result %}
{% for col in row %}
{{ col }}
{% endfor %}
{% endfor %}
{% endif %}
{% endfor %}
Ask
{% endif %}