File size: 283 Bytes
6299828
 
 
 
 
 
ad6e5e4
6299828
 
813b96d
 
1
2
3
4
5
6
7
8
9
10
11
from fastapi import FastAPI

app = FastAPI(title="Deploying FastAPI Apps on Huggingface")

@app.get("/", tags=["Home"])
def api_home():
    return {'detail': 'Welcome to FastAPI Tutorial!'}

@app.post("/",tags=["hello"])
def hello(name: str):
    return {'message': f"hello {name}!"}