Spaces:
Runtime error
Runtime error
Commit ·
be049b1
1
Parent(s): 05ff752
Fix launch_interface method call in HuggingFace Spaces deployment
Browse files- Remove unsupported show_error and quiet parameters from launch_interface call
- Fixes TypeError: launch_interface() got an unexpected keyword argument 'show_error'
- App now starts successfully on HuggingFace Spaces
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
app.py
CHANGED
|
@@ -72,9 +72,7 @@ def main():
|
|
| 72 |
share=False,
|
| 73 |
server_name="0.0.0.0",
|
| 74 |
server_port=7860,
|
| 75 |
-
debug=False
|
| 76 |
-
show_error=True,
|
| 77 |
-
quiet=False
|
| 78 |
)
|
| 79 |
|
| 80 |
except Exception as e:
|
|
|
|
| 72 |
share=False,
|
| 73 |
server_name="0.0.0.0",
|
| 74 |
server_port=7860,
|
| 75 |
+
debug=False
|
|
|
|
|
|
|
| 76 |
)
|
| 77 |
|
| 78 |
except Exception as e:
|