{% extends "base.html" %} {% block content %}

Choose an agent model

{% if prompt %}

Your prompt:

{{ prompt|linebreaksbr }}
{% else %}

No prompt was found. Use the scrobble bar to ask a question first.

{% endif %} {% if models_error %}
{{ models_error }}
{% endif %} {% if models %}

{{ models|length }} free model{{ models|length|pluralize }} available via OpenRouter.

{% for model in models %}
{{ model.name }}
{{ model.id }}
{% csrf_token %}
{% endfor %}
{% elif prompt and not models_error %}
No free models are available from OpenRouter right now.
{% endif %}
{% endblock %}