1
0
mirror of https://github.com/ijaric/voice_assistant.git synced 2025-05-24 14:33:26 +00:00

feat: small fixes

This commit is contained in:
Григорич 2023-10-07 05:56:33 +03:00
parent 0a61b4ada4
commit 03a8e69367

View File

@ -1,7 +1,7 @@
from typing import Protocol
import typing
class STTProtocol(Protocol):
class STTProtocol(typing.Protocol):
async def speech_to_text(self, audio: bytes) -> str:
...