{% extends "base.html" %} {% block title %}Text Generation — AI Allucanget{% endblock %} {% block content %}

Text Generation

{% if error %}
{{ error }}
{% endif %} {% if result %}

Result

{{ result.content }}
{% if result.usage %}

Tokens: {{ result.usage.get('total_tokens', '—') }}

{% endif %}
{% endif %}
{% endblock %}