FireRedChat Turn Detector plugin for LiveKit Agents
Python
12
3 commits
updated Sep 16, 2025
This plugin provides FireRedChat's open-weight end-of-turn detection model for LiveKit Agents.
pip install -e .
from livekit.plugins.fireredchat_turn_detector.base import ChineseModel
session = AgentSession(
...
turn_detection=ChineseModel(unlikely_threshold=0.08),
)
Bilingual model that currently supports the following languages: English, Chinese
from livekit.plugins.fireredchat_turn_detector.base import MultilingualModel
session = AgentSession(
...
turn_detection=MultilingualModel(unlikely_threshold=0.08),
)
The plugin source code and model weights are licensed under the Apache-2.0 license.
Python
100.0%
FireRedChat Turn Detector plugin for LiveKit Agents
Python
12
3 commits
updated Sep 16, 2025
This plugin provides FireRedChat's open-weight end-of-turn detection model for LiveKit Agents.
pip install -e .
from livekit.plugins.fireredchat_turn_detector.base import ChineseModel
session = AgentSession(
...
turn_detection=ChineseModel(unlikely_threshold=0.08),
)
Bilingual model that currently supports the following languages: English, Chinese
from livekit.plugins.fireredchat_turn_detector.base import MultilingualModel
session = AgentSession(
...
turn_detection=MultilingualModel(unlikely_threshold=0.08),
)
The plugin source code and model weights are licensed under the Apache-2.0 license.
Python
100.0%