Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -354,4 +354,9 @@ def create_interface():
|
|
354 |
outputs=[pdf_output, pdf_gallery]
|
355 |
)
|
356 |
|
357 |
-
return demo
|
|
|
|
|
|
|
|
|
|
|
|
354 |
outputs=[pdf_output, pdf_gallery]
|
355 |
)
|
356 |
|
357 |
+
return demo
|
358 |
+
|
359 |
+
|
360 |
+
if __name__ == "__main__":
|
361 |
+
print(f"===== Application Startup at {os.environ.get('START_TIME', 'Unknown')} =====")
|
362 |
+
create_interface().launch(share=True, debug=True)
|