Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
SebaK13
/
ai-challenge
like
0
Sleeping
App
Files
Files
Community
3e4263c
ai-challenge
/
app.py
SebaK13
Create app.py
aca9b7c
verified
4 months ago
raw
Copy download link
history
blame
Safe
226 Bytes
from
fastapi
import
FastAPI
from
routers
import
distilbert
# Create a new FastAPI app instance
app = FastAPI()
app.include_router(distilbert)
@app.get(
"/"
)
def
greet_json
():
return
{
"detail"
:
"AI Challenge FastAPI"
}