Update app.py
Browse files
app.py
CHANGED
|
@@ -44,6 +44,6 @@ demo = gr.Interface(
|
|
| 44 |
if __name__ == "__main__":
|
| 45 |
# Launch the Gradio Interface
|
| 46 |
host = "127.0.0.1"
|
| 47 |
-
port =
|
| 48 |
print(f"Gradio app is running on {host}:{port}")
|
| 49 |
-
demo.launch(server_name=host, server_port=port, share=True)
|
|
|
|
| 44 |
if __name__ == "__main__":
|
| 45 |
# Launch the Gradio Interface
|
| 46 |
host = "127.0.0.1"
|
| 47 |
+
port = 7860
|
| 48 |
print(f"Gradio app is running on {host}:{port}")
|
| 49 |
+
demo.launch()#server_name=host, server_port=port, share=True)
|