Spaces:
Runtime error
Runtime error
| """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: | |
| ... | |