marks commited on
Commit
6a548ba
·
1 Parent(s): ce725bd

Still testing

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -65,7 +65,7 @@ class PodcasterUI:
65
  with gr.Column():
66
  voice_model = gr.Dropdown(
67
  label='Voice',
68
- choices=self.voices[1], # Already in (id, name) format
69
  value=self.voices[0][0] if len(self.voices) > 1 else None,
70
  type="value" # Ensures value (id) is used internally
71
  )
 
65
  with gr.Column():
66
  voice_model = gr.Dropdown(
67
  label='Voice',
68
+ choices=self.voices[1][0], # Already in (id, name) format
69
  value=self.voices[0][0] if len(self.voices) > 1 else None,
70
  type="value" # Ensures value (id) is used internally
71
  )