Spaces:
Runtime error
Runtime error
librarian-bot
commited on
Commit
·
765c00e
1
Parent(s):
805e23a
Update main.py
Browse files
main.py
CHANGED
@@ -22,7 +22,10 @@ app = FastAPI()
|
|
22 |
|
23 |
@app.get("/")
|
24 |
def read_root():
|
25 |
-
|
|
|
|
|
|
|
26 |
|
27 |
|
28 |
def similar(a, b):
|
|
|
22 |
|
23 |
@app.get("/")
|
24 |
def read_root():
|
25 |
+
data = """
|
26 |
+
<p>This is a demo app showing how to use webhooks to automate metadata review for models and datasets shared on the Hugging Face Hub.</p>
|
27 |
+
"""
|
28 |
+
return Response(content=data, media_type="text/html")
|
29 |
|
30 |
|
31 |
def similar(a, b):
|