Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
TheMihirNaik
/
generate-embeddings-api
like
0
Running
App
Files
Files
Community
3
Fetching metadata from the HF Docker repository...
Create app.py
#2
by
TheMihirNaik
- opened
Feb 19
base:
refs/heads/main
←
from:
refs/pr/2
Discussion
Files changed
+7
-0
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
from fastapi import FastAPI
2
+
3
+
app = FastAPI()
4
+
5
+
@app.get("/")
6
+
def greet_json():
7
+
return {"Hello": "World!"}