{% extends "base.html" %} {% block body %}
kluris

{{ brain_name }}

CHAT
{% if not llm_ready %}
LLM not configured

Set KLURIS_API_KEY (or the OAuth vars) in .env and restart the container to enable chat. The brain explorer in the sidebars remains fully available.

{% if llm_error %}
{{ llm_error }}
{% endif %}
{% endif %} {% for msg in history %}
{{ msg.role }}
{{ msg.content }}
{% endfor %}
Tokens this session: 0 in / 0 out
{% endblock %}