{% extends 'example/base.html' %} {% block title %}Chat Demo - Django-Chain Examples{% endblock %} {% block content %}

Chat Demo

Chat Interface
Session: Not started

Start a conversation by typing a message below.

Session Information

No active session

Recent Sessions
{% if recent_sessions %}
{% for session in recent_sessions %}
{{ session.title|truncatechars:20 }}
{{ session.created_at|date:"M d" }}

{{ session.messages.count }} messages

{{ session.session_id|truncatechars:12 }}
{% endfor %}
{% else %}

No recent sessions

{% endif %}
How to Use This Demo
Features Demonstrated:
  • Persistent chat sessions
  • Message history storage
  • Real-time LLM responses
  • Session management
Try These Examples:
{% endblock %} {% block extra_js %} {% endblock %}