{% extends 'base.html' %} {% block title %}Chat — {{ project.name }}{% endblock %} {% block head %} {% endblock %} {% block content %}
← Projeto
Chat IA — {{ project.name }}
{{ project.client.name }} · IA contextualizada neste projeto
Contexto: {{ project.name }}
{% if current_user.is_admin() %} {% endif %}
{% if not messages %}
💬
Chat iniciado
A IA responde com base no contexto do projeto {{ project.name }}.
Faça uma pergunta ou peça ajuda sobre este projeto.
{% else %} {% for msg in messages %}
{% if msg.role == 'user' %}{{ current_user.name[0].upper() }}{% else %}IA{% endif %}
{{ msg.content }}
{{ msg.created_at.strftime('%d/%m %H:%M') }}
{% endfor %} {% endif %}
Enter para enviar · Shift+Enter para nova linha
{% endblock %} {% block scripts %} {% endblock %}