{% extends "core/base.html" %} {% load static %} {% block topbar_title %}SwiftPOS AI Assistant{% endblock %} {% block content %}
SwiftPOS AI Brain
Connected to {{ request.company.name }} Database
Hello {{ user.get_full_name|default:user.username }}! I am your AI Assistant. You can ask me questions about your sales, inventory levels, and overall business metrics based on today's data. How can I help you today?
Loading prompt shortcuts...
AI Knowledge Log
Recent administrative requests to the AI Brain.
{% for log in chat_history %}
{{ log.user.get_full_name|default:log.user.username }} {{ log.created_at|date:"M j, g:i A" }}
{{ log.prompt }}
{{ log.response }}
{% empty %}
No logs found.
{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}