aakash0563 commited on
Commit
3f7e079
1 Parent(s): 70c07e6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -94,9 +94,9 @@ iface2 = gr.Interface(
94
 
95
 
96
 
97
- # Launch the apps in separate threads
98
- thread1 = threading.Thread(target=iface1.launch)
99
- thread2 = threading.Thread(target=iface2.launch)
100
 
101
  thread1.start()
102
  thread2.start()
 
94
 
95
 
96
 
97
+ thread1 = threading.Thread(target=iface1.launch, args=(debug=True, share=True, server_port=7861))
98
+ thread2 = threading.Thread(target=iface2.launch, args=(debug=True, share=True, server_port=7862))
99
+
100
 
101
  thread1.start()
102
  thread2.start()