"""Xiaomi MiMo ASR plugin. Provider class lives in ``provider.py``; ``__init__.py::register(ctx)`` registers an instance. """ from __future__ import annotations from plugins.stt.mimo.provider import MiMoSTTProvider def register(ctx) -> None: """Register the MiMo ASR (STT) provider with the plugin context.""" ctx.register_stt_provider(MiMoSTTProvider())