Spaces:
Runtime error
Runtime error
Try allow post in api
Browse files
app.py
CHANGED
|
@@ -17,4 +17,5 @@ iface.launch(
|
|
| 17 |
server_name="0.0.0.0", # Allow external connections
|
| 18 |
share=True, # Create public URL
|
| 19 |
allowed_paths=["*"] # Allow CORS
|
|
|
|
| 20 |
)
|
|
|
|
| 17 |
server_name="0.0.0.0", # Allow external connections
|
| 18 |
share=True, # Create public URL
|
| 19 |
allowed_paths=["*"] # Allow CORS
|
| 20 |
+
methods=["POST"]
|
| 21 |
)
|