Saidie000's picture
Upload 83 files
09f1b19 verified
raw
history blame contribute delete
232 Bytes
"""Dynamic chunked speech interface."""
from __future__ import annotations
from typing import Protocol
class SpeechChunkingInterface(Protocol):
async def speak(self, text: str, emotion: str = "neutral") -> None:
...