HashScripts commited on
Commit
20f9572
·
verified ·
1 Parent(s): b66c359

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -1,4 +1,8 @@
1
  from gui.gui_gradio import ShortGptUI
2
 
3
  app = ShortGptUI(colab=True)
4
- app.launch(share=True)
 
 
 
 
 
1
  from gui.gui_gradio import ShortGptUI
2
 
3
  app = ShortGptUI(colab=True)
4
+ app.launch() # Launch the interface
5
+
6
+ # After launching, generate a share link
7
+ share_link = app.interface.share()
8
+ print("Public Share Link: ", share_link)