Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -742,8 +742,7 @@ with gr.Blocks(title="PDF to Audio", css="""
|
|
742 |
audio_model = gr.Dropdown(
|
743 |
label="Audio Generation Model",
|
744 |
choices=STANDARD_AUDIO_MODELS,
|
745 |
-
value="gpt-4o-mini-tts",
|
746 |
-
#value="tts-1",
|
747 |
info="Select the model to generate the audio.",
|
748 |
)
|
749 |
speaker_1_voice = gr.Dropdown(
|
@@ -893,4 +892,4 @@ demo.queue(max_size=20, default_concurrency_limit=32)
|
|
893 |
|
894 |
# Launch the Gradio app
|
895 |
if __name__ == "__main__":
|
896 |
-
demo.launch(
|
|
|
742 |
audio_model = gr.Dropdown(
|
743 |
label="Audio Generation Model",
|
744 |
choices=STANDARD_AUDIO_MODELS,
|
745 |
+
value="tts-1", #value="gpt-4o-mini-tts",
|
|
|
746 |
info="Select the model to generate the audio.",
|
747 |
)
|
748 |
speaker_1_voice = gr.Dropdown(
|
|
|
892 |
|
893 |
# Launch the Gradio app
|
894 |
if __name__ == "__main__":
|
895 |
+
demo.launch()
|