Update app.py
Browse files
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(
|
|
|
|
|
|
|
|
|
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 |
|