Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AndreySokolov01
/
omniparse
like
0
Build error
App
Files
Files
Community
a88e624
omniparse
/
app.py
AndreySokolov01
Create app.py
2c87589
verified
6 months ago
raw
Copy download link
history
blame
Safe
108 Bytes
from
fastapi
import
FastAPI
app = FastAPI()
@app.get(
"/"
)
def
greet_json
():
return
{
"Hello"
:
"World!"
}