Spaces:
Sleeping
Sleeping
Tracy André
commited on
Commit
·
bb831a1
1
Parent(s):
66a3ee0
updated
Browse files- app.py +2 -1
- mcp_server.py +1 -1
- requirements.txt +1 -1
app.py
CHANGED
|
@@ -11,8 +11,9 @@ os.environ.setdefault("DATASET_ID", "HackathonCRA/2024")
|
|
| 11 |
|
| 12 |
if __name__ == "__main__":
|
| 13 |
demo = create_mcp_interface()
|
|
|
|
|
|
|
| 14 |
demo.launch(
|
| 15 |
-
mcp_server=True,
|
| 16 |
server_name="0.0.0.0",
|
| 17 |
server_port=7860,
|
| 18 |
share=True
|
|
|
|
| 11 |
|
| 12 |
if __name__ == "__main__":
|
| 13 |
demo = create_mcp_interface()
|
| 14 |
+
# Note: MCP server functionality will be enabled once supported in deployment
|
| 15 |
+
# For local development with MCP support, add: mcp_server=True
|
| 16 |
demo.launch(
|
|
|
|
| 17 |
server_name="0.0.0.0",
|
| 18 |
server_port=7860,
|
| 19 |
share=True
|
mcp_server.py
CHANGED
|
@@ -293,4 +293,4 @@ def create_mcp_interface():
|
|
| 293 |
|
| 294 |
if __name__ == "__main__":
|
| 295 |
demo = create_mcp_interface()
|
| 296 |
-
demo.launch(
|
|
|
|
| 293 |
|
| 294 |
if __name__ == "__main__":
|
| 295 |
demo = create_mcp_interface()
|
| 296 |
+
demo.launch(server_name="0.0.0.0", server_port=7860, share=True)
|
requirements.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
gradio>=4.
|
| 2 |
pandas>=2.0.0
|
| 3 |
numpy>=1.24.0
|
| 4 |
plotly>=5.0.0
|
|
|
|
| 1 |
+
gradio>=4.44.0
|
| 2 |
pandas>=2.0.0
|
| 3 |
numpy>=1.24.0
|
| 4 |
plotly>=5.0.0
|