Module livekit.plugins.turn_detector.english

Classes

class EnglishModel
Expand source code
class EnglishModel(EOUModelBase):
    def __init__(self):
        super().__init__(model_type="en")

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

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

Ancestors