Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Benny-Tang
/
Manus3
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Ken Sang Tang
commited on
Jul 24, 2025
Commit
4c419f4
·
verified
·
1 Parent(s):
779fb9a
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+4
-0
app.py
CHANGED
Viewed
@@ -152,5 +152,9 @@ async def task_events(task_id: str):
152
},
153
)
154
155
156
152
},
153
)
154
155
+
@app.get("/", response_class=HTMLResponse)
156
+
async def root():
157
+
return "<h1>FastAPI server is running</h1>"
158
+
159
160