camparchimedes commited on
Commit
56823a6
·
verified ·
1 Parent(s): 04f2c63

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -154,4 +154,6 @@ with iface:
154
  pdf_text_only = gr.Button("Download PDF with Transcribed Text")
155
  pdf_output = gr.File(label="Download PDF")
156
 
157
- pdf_text_only.click(fn=lambda text: save_to_pdf(text, ""), inputs=[text_output], outputs=[pdf_output])
 
 
 
154
  pdf_text_only = gr.Button("Download PDF with Transcribed Text")
155
  pdf_output = gr.File(label="Download PDF")
156
 
157
+ pdf_text_only.click(fn=lambda text: save_to_pdf(text, ""), inputs=[text_output], outputs=[pdf_output])
158
+
159
+ iface.launch(debug=True)