Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -244,7 +244,7 @@ with gr.Blocks(title="AI Generated Presentation") as demo:
|
|
244 |
topic = gr.Textbox(label="Topic of the presentation")
|
245 |
length = gr.Slider(minimum=1, maximum=50, value=6, label="number of generated PPT pages", step=1)
|
246 |
theme = gr.File(value="./theme.pptx", file_types=['pptx', 'ppt'], label="PPT template")
|
247 |
-
output_file = gr. File(interactive=
|
248 |
|
249 |
topic. submit(
|
250 |
fn=generate_ppt,
|
|
|
244 |
topic = gr.Textbox(label="Topic of the presentation")
|
245 |
length = gr.Slider(minimum=1, maximum=50, value=6, label="number of generated PPT pages", step=1)
|
246 |
theme = gr.File(value="./theme.pptx", file_types=['pptx', 'ppt'], label="PPT template")
|
247 |
+
output_file = gr. File(interactive=False)
|
248 |
|
249 |
topic. submit(
|
250 |
fn=generate_ppt,
|