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

Image Generation

{% if models %} {% else %} {% endif %}

Upload an image to use as visual reference (image-to-image).

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

Generated image{{ 's' if result.images|length > 1 }}

{% for img in result.images %} {% if img.url %} Generated image {% endif %} {% if img.revised_prompt %}

{{ img.revised_prompt }}

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