bluenevus commited on
Commit
2fa76ba
·
verified ·
1 Parent(s): d222ee1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -147,7 +147,11 @@ with gr.Blocks() as demo:
147
  content_input = gr.Textbox(label="Paste your content or upload a document")
148
  document_upload = gr.File(label="Upload Document")
149
 
150
- duration = gr.Radio(["1-5 min", "5-10 min", "10-15 min"], label="Estimated podcast duration")
 
 
 
 
151
 
152
  num_hosts = gr.Radio([1, 2], label="Number of podcast hosts", value=2)
153
 
 
147
  content_input = gr.Textbox(label="Paste your content or upload a document")
148
  document_upload = gr.File(label="Upload Document")
149
 
150
+ duration = gr.Radio(
151
+ ["1-5 min", "5-10 min", "10-15 min"],
152
+ label="Estimated podcast duration",
153
+ value="1-5 min" # This sets the default value
154
+ )
155
 
156
  num_hosts = gr.Radio([1, 2], label="Number of podcast hosts", value=2)
157