From f1d102c66bc5fd4a714d3176cc836c4076b4fec8 Mon Sep 17 00:00:00 2001 From: Kian Date: Sat, 4 Mar 2023 18:14:17 -0800 Subject: [PATCH] update model names --- vocode/models/transcriber.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vocode/models/transcriber.py b/vocode/models/transcriber.py index afe8d6e..8f45793 100644 --- a/vocode/models/transcriber.py +++ b/vocode/models/transcriber.py @@ -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):