Core Infrastructure
Systems
Narration System
class VoiceHandler:
async def generate_and_play(self, text: str):
"""Generate and play voice response"""
audio = await self.elevenlabs_client.generate(
text=text,
voice_id=self.voice_id,
model=self.voice_model
)
await self.play_audio(audio)Voice Command System
Command Acceleration System
Avatar Management System
UI System
Notification System
Last updated