From bcafdfe7aa5e076610e1951f35b11898a83f1391 Mon Sep 17 00:00:00 2001 From: ntzyz Date: Tue, 7 Jul 2026 12:51:48 +0800 Subject: feat: add Hermes plugin architecture (plugin.yaml, __init__.py, provider.py) - Add plugin.yaml with proper kind/requires_env/provides fields - Add __init__.py and provider.py for STT provider registration - Split README.md (overview) and INSTALL.md (install for agents) - Add setup.sh (reference only) and .gitignore - Add Windows PowerShell equivalents and reuse tip for MiMo API key --- plugin.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 plugin.yaml (limited to 'plugin.yaml') diff --git a/plugin.yaml b/plugin.yaml new file mode 100644 index 0000000..9a87a03 --- /dev/null +++ b/plugin.yaml @@ -0,0 +1,9 @@ +name: stt-mimo +version: 1.0.0 +description: "Xiaomi MiMo ASR — speech-to-text via MiMo's chat/completions API with input_audio format. Requires XIAOMI_API_KEY (https://platform.xiaomimimo.com)." +author: ntzyz +kind: backend +provides_stt_providers: + - mimo-asr +requires_env: + - XIAOMI_API_KEY -- cgit v1.3.1