Update app.py
Browse files
app.py
CHANGED
@@ -12,9 +12,7 @@ login(token=auth_token)
|
|
12 |
# list all files in the ./audios directory for the dropdown
|
13 |
AUDIO_FILES = [f for f in os.listdir('./exples_voix') if os.path.isfile(os.path.join('./exples_voix', f))]
|
14 |
MODELES_TTS = ["ArissBandoss/coqui-tts-moore-V1", "ArissBandoss/mms-tts-mos-V2"]
|
15 |
-
MODELES_ASR = ["ArissBandoss/whisper-small-mos",
|
16 |
-
#"openai/whisper-large-v3-turbo"
|
17 |
-
]
|
18 |
LANGUAGES = ["Automatic Detection"]
|
19 |
|
20 |
DESCRIPTION_TTT = """<div style="display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;">
|
|
|
12 |
# list all files in the ./audios directory for the dropdown
|
13 |
AUDIO_FILES = [f for f in os.listdir('./exples_voix') if os.path.isfile(os.path.join('./exples_voix', f))]
|
14 |
MODELES_TTS = ["ArissBandoss/coqui-tts-moore-V1", "ArissBandoss/mms-tts-mos-V2"]
|
15 |
+
MODELES_ASR = ["ArissBandoss/whisper-small-mos", "ArissBandoss/whisper-large-v3-turbo-mos"]
|
|
|
|
|
16 |
LANGUAGES = ["Automatic Detection"]
|
17 |
|
18 |
DESCRIPTION_TTT = """<div style="display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;">
|