diff options
| author | ntzyz <i@ntzyz.io> | 2026-07-07 12:51:48 +0800 |
|---|---|---|
| committer | ntzyz <i@ntzyz.io> | 2026-07-07 12:51:48 +0800 |
| commit | bcafdfe7aa5e076610e1951f35b11898a83f1391 (patch) | |
| tree | 76776b5c1eaf83040a782d80542d72357bce6195 /plugin.yaml | |
| parent | 582cf29169bceaed8754cf6f7fefcd37ac4506b8 (diff) | |
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
Diffstat (limited to 'plugin.yaml')
| -rw-r--r-- | plugin.yaml | 9 |
1 files changed, 9 insertions, 0 deletions
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 <i@ntzyz.io> +kind: backend +provides_stt_providers: + - mimo-asr +requires_env: + - XIAOMI_API_KEY |
