1 Commits

Author SHA1 Message Date
af1e81243a Added audio commands + "server test" command 2025-09-09 22:35:33 +02:00

View File

@@ -51,7 +51,7 @@ async def _async_transcribe(host: str, port: int, timeout: float, pcm_bytes: byt
if event is None:
break
if Transcript.is_type(event):
if Transcript.is_type(event.type):
tr = Transcript.from_event(event)
transcript_text = tr.text
break