Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Maxim01
/
nlp-rgr
like
0
Runtime error
App
Files
Files
Community
cf509fc
nlp-rgr
/
api
/
base_router.py
Max Bushuev
f
cf509fc
11 months ago
raw
Copy download link
history
blame
Safe
224 Bytes
from
fastapi
import
APIRouter
from
api
import
prediction
base_router = APIRouter()
base_router.include_router(prediction.router)
@base_router.get(
'/'
, name=
'Default page'
)
async
def
default
():
return
'Привет!'