{% extends "base.html" %} {% block title %}Text Generation — All You Can GET AI{% endblock %} {% block content %}

Text Chat

Model & System Prompt
{% if models %} {% else %}

No models available

{% endif %}
{% if not chat_history %}

No messages yet. Start the conversation below.

{% endif %} {% for msg in chat_history %} {% if msg.role == "user" %}
You
{{ msg.content }}
{% elif msg.role == "assistant" %}
Assistant
{{ msg.content }}
{% if msg.usage %} {{ msg.usage.get('total_tokens', '') }} tokens {% endif %}
{% endif %} {% endfor %} {% if error %}
{{ error }}
{% endif %}
{% endblock %}