{% extends 'base.html' %} {% block title %}Coqui STT Model Manager{% endblock %} {% block head_extra %} {% endblock %} {% macro footer() -%} {% if installed_models|length > 0 %} Install a new model from the Coqui STT Model Zoo. {% else %} Install a model from the Coqui STT Model zoo to get started. {% endif %} {%- endmacro %} {% block content %}

A unified interface to connect your microphone to a Coqui Speech-to-Text model, manage your installed models and install new ones from the Coqui Model Zoo. The Coqui Model Zoo is the central hub for finding STT models created by our community as well as official Coqui models.

{% for card in installed_models %} {% endfor %} {% if not models_being_installed %} {{ footer() }} {% else %}
Installed STT models
NameLanguageVersionCreatorRun modelShow files
{{ card.name }} {{ card.language }} {{ card.version }} {{ card.creator }}
{% endif %} {% if models_being_installed %} {% for install in models_being_installed %} {% endfor %} {{ footer() }}
Models being installed
{{ install['model_card']['name'] }} {{ install['total_progress'] }}%...
{% endif %} {% endblock %}