Commit
·
bb2ef81
1
Parent(s):
9989a83
Remove unnecessary parameters from Gradio launch settings, simplifying the configuration for improved clarity and performance in local and Spaces environments.
Browse files
app.py
CHANGED
@@ -268,9 +268,4 @@ with gr.Blocks(
|
|
268 |
if __name__ == "__main__":
|
269 |
import os
|
270 |
|
271 |
-
demo.launch(
|
272 |
-
server_name="0.0.0.0",
|
273 |
-
server_port=7860,
|
274 |
-
show_error=True,
|
275 |
-
api_name="predict"
|
276 |
-
)
|
|
|
268 |
if __name__ == "__main__":
|
269 |
import os
|
270 |
|
271 |
+
demo.launch()
|
|
|
|
|
|
|
|
|
|