Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
InnoLink
/
Langfuse-demo
like
1
Paused
App
Files
Files
Community
7
Fetching metadata from the HF Docker repository...
InnoLink
commited on
Jan 22
Commit
6e9ce07
·
verified
·
1 Parent(s):
d69367c
Create main.py
Browse files
Files changed (1)
hide
show
main.py
+6
-0
main.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
from fastapi import FastAPI
2
+
3
+
app = FastAPI()
4
+
@app.get("/")
5
+
def read_root():
6
+
return {"Hello": "World!"}