cool-camera-83057
05/09/2025, 8:21 AMtall-airline-16756
05/09/2025, 8:21 AMtall-airline-16756
05/09/2025, 8:21 AMturn_detector
for French, you can use the multilingual turn detection model. This model is based on Qwen2.5-0.5B and has excellent performance for French, with a 98.8% true positive rate and a 97.3% true negative rate.
To implement the multilingual model, you can use the following code snippet:
from livekit.plugins.turn_detector.multilingual import MultilingualModel
session = AgentSession(
...
turn_detection=MultilingualModel(),
)
Note that the multilingual model requires approximately 400MB of RAM and completes inferences in about 25ms. This is slightly larger and slower compared to the English-only model, but it provides enhanced support for French and other languages.
Sources: Turn detection and interruptions | LiveKit Docs | Tree View: | dse-workbenchcool-camera-83057
05/09/2025, 8:22 AMtall-airline-16756
05/09/2025, 8:22 AMcool-camera-83057
05/09/2025, 8:22 AM