{% extends "base.html" %} {% block title %}q-ai — Assistant{% endblock %} {% block content %}
{% if not assist_configured %} {# ── Setup card: pick provider & model ── #}

Configure Assistant

Select a provider and model to start using the assistant.

{% set selector_id = "assist-setup" %} {% set providers = assist_providers %} {% include "partials/model_selector.html" %}
{% else %} {# ── Chat interface ── #}
{# Messages rendered here by JS #}

Ask about findings, plan workflows, or explore capabilities.

{# ── Streaming status bar ── #} {# ── Suggested prompts ── #}
{% for prompt in suggested_prompts %} {% endfor %}
{# ── Input area ── #}
{% endif %}
{% endblock %}