update model names

This commit is contained in:
Kian 2023-03-04 18:14:17 -08:00
commit f1d102c66b

View file

@ -13,9 +13,9 @@ class TranscriberType(str, Enum):
class EndpointingType(str, Enum):
BASE = "base"
TIME_BASED = "time_based"
PUNCTUATION_BASED = "punctuation_based"
BASE = "endpointing_base"
TIME_BASED = "endpointing_time_based"
PUNCTUATION_BASED = "endpointing_punctuation_based"
class EndpointingConfig(TypedModel, type=EndpointingType.BASE):