fix(telegram): separate voice transcription client (#166)

This commit is contained in:
codyw912
2026-01-17 14:50:08 -05:00
committed by GitHub
parent 9d7c6fcd8c
commit ee365d76ff
12 changed files with 83 additions and 15 deletions
+3 -1
View File
@@ -1954,8 +1954,10 @@ async def test_run_main_loop_voice_transcript_preserves_directive(
model: str,
max_bytes: int | None = None,
reply,
base_url: str | None = None,
api_key: str | None = None,
) -> str:
_ = bot, msg, enabled, model, max_bytes, reply
_ = bot, msg, enabled, model, max_bytes, reply, base_url, api_key
return "/codex do thing"
monkeypatch.setattr(telegram_loop, "transcribe_voice", _fake_transcribe)