diff --git a/voice-agents/livekit-voice-agent/README.md b/voice-agents/livekit-voice-agent/README.md index ecb3831..96c8872 100644 --- a/voice-agents/livekit-voice-agent/README.md +++ b/voice-agents/livekit-voice-agent/README.md @@ -106,12 +106,13 @@ tts=smallestai.TTS( model="lightning_v3.1_pro", voice_id="meher", language="en", + # word_timestamps=True, # opt in to per-word timing events (base-queue EN/HI voices) ) ``` ### Interruption — Zero Custom Code -The `CrewSession` handles interruptions automatically. When Silero VAD detects you speaking mid-response, the TTS stream is cancelled and your speech is processed as a new turn. +The `AgentSession` handles interruptions automatically. When Silero VAD detects you speaking mid-response, the TTS stream is cancelled and your speech is processed as a new turn. ---