spookyuser
commited on
Commit
·
994edb4
1
Parent(s):
4ca77c1
Fix share again
Browse files
app.py
CHANGED
@@ -43,4 +43,7 @@ def get_stable_diffusion_image(prompt):
|
|
43 |
|
44 |
|
45 |
iface = gr.Interface(fn=process_inputs, inputs=["text", "audio"], outputs="video")
|
46 |
-
|
|
|
|
|
|
|
|
43 |
|
44 |
|
45 |
iface = gr.Interface(fn=process_inputs, inputs=["text", "audio"], outputs="video")
|
46 |
+
if setshare:
|
47 |
+
iface.launch(share=True)
|
48 |
+
else:
|
49 |
+
iface.launch()
|