Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -141,4 +141,10 @@ interface = gr.Interface(
|
|
141 |
)
|
142 |
|
143 |
# ✅ Launch Gradio App
|
144 |
-
interface.launch(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
)
|
142 |
|
143 |
# ✅ Launch Gradio App
|
144 |
+
interface.launch(
|
145 |
+
server_name="0.0.0.0",
|
146 |
+
server_port=7860,
|
147 |
+
show_api=True,
|
148 |
+
cors_allowed_origins=["*"] # Allows access from any frontend
|
149 |
+
)
|
150 |
+
|