Module livekit.plugins.turn_detector.english

Classes

class EnglishModel (*, unlikely_threshold: float | None = None)
Expand source code
class EnglishModel(EOUModelBase):
    def __init__(self, *, unlikely_threshold: float | None = None):
        super().__init__(model_type="en", unlikely_threshold=unlikely_threshold)

    def _inference_method(self) -> str:
        return _EUORunnerEn.INFERENCE_METHOD

Helper class that provides a standard way to create an ABC using inheritance.

Ancestors