capradeepgujaran
commited on
Commit
•
ca72d14
1
Parent(s):
dccbeb8
Update app.py
Browse files
app.py
CHANGED
@@ -341,13 +341,14 @@ class VideoQAInterface:
|
|
341 |
return interface
|
342 |
|
343 |
# Create and launch the app
|
|
|
344 |
app = VideoQAInterface()
|
345 |
interface = app.create_interface()
|
346 |
|
347 |
if __name__ == "__main__":
|
348 |
interface.launch(
|
349 |
-
server_name="0.0.0.0",
|
350 |
-
share=False,
|
351 |
-
|
352 |
-
|
353 |
)
|
|
|
341 |
return interface
|
342 |
|
343 |
# Create and launch the app
|
344 |
+
|
345 |
app = VideoQAInterface()
|
346 |
interface = app.create_interface()
|
347 |
|
348 |
if __name__ == "__main__":
|
349 |
interface.launch(
|
350 |
+
server_name="0.0.0.0", # Allow external connections
|
351 |
+
share=False, # Set to True for public URL
|
352 |
+
show_error=True, # Show detailed error messages
|
353 |
+
quiet=False # Show server logs
|
354 |
)
|