Spaces:
Running
Running
Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
|
@@ -174,4 +174,6 @@ def render_svg(svg: str, title: str = "SVG Diagram") -> CallToolResult:
|
|
| 174 |
|
| 175 |
|
| 176 |
if __name__ == "__main__":
|
| 177 |
-
|
|
|
|
|
|
|
|
|
| 174 |
|
| 175 |
|
| 176 |
if __name__ == "__main__":
|
| 177 |
+
import uvicorn
|
| 178 |
+
app = mcp.streamable_http_app()
|
| 179 |
+
uvicorn.run(app, host="0.0.0.0", port=7860)
|