Skip to content

Commit

Permalink
deprecate chichewa ASR model
Browse files Browse the repository at this point in the history
  • Loading branch information
nikochiko committed Jan 14, 2025
1 parent 4c944fa commit 6148124
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions daras_ai_v2/asr.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,9 @@ class AsrModels(Enum):
whisper_hindi_large_v2 = "Whisper Hindi Large v2 (Bhashini)"
whisper_telugu_large_v2 = "Whisper Telugu Large v2 (Bhashini)"
whisper_large_v3 = "Whisper Large v3 (openai)"
whisper_chichewa_large_v3 = "Whisper Large v3 chichewa (opportunity.org)"
whisper_chichewa_large_v3 = (
"Whisper Large v3 chichewa [Deprecated] (opportunity.org)"
)
gpt_4_o_audio = "GPT-4o Audio (openai)"
nemo_english = "Conformer English (ai4bharat.org)"
nemo_hindi = "Conformer Hindi (ai4bharat.org)"
Expand All @@ -259,7 +261,7 @@ def supports_auto_detect(self) -> bool:

@classmethod
def _deprecated(cls):
return {cls.seamless_m4t}
return {cls.seamless_m4t, cls.whisper_chichewa_large_v3}

@classmethod
def get(cls, key, default=None):
Expand Down

0 comments on commit 6148124

Please sign in to comment.