Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -361,12 +361,13 @@ def main():
|
|
361 |
|
362 |
# Create and launch interface
|
363 |
interface = create_interface()
|
|
|
|
|
364 |
interface.launch(
|
365 |
-
share=True,
|
366 |
server_name="0.0.0.0",
|
367 |
server_port=7860,
|
|
|
|
|
|
|
368 |
debug=True
|
369 |
-
)
|
370 |
-
|
371 |
-
if __name__ == "__main__":
|
372 |
-
main()
|
|
|
361 |
|
362 |
# Create and launch interface
|
363 |
interface = create_interface()
|
364 |
+
|
365 |
+
# Launch with proper configuration
|
366 |
interface.launch(
|
|
|
367 |
server_name="0.0.0.0",
|
368 |
server_port=7860,
|
369 |
+
show_error=True,
|
370 |
+
share=False,
|
371 |
+
inbrowser=True,
|
372 |
debug=True
|
373 |
+
)
|
|
|
|
|
|