flan-t5-small / main.py
harithapliyal's picture
Update main.py
bdb2426 verified
raw
history blame contribute delete
129 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "You are not the Small World!"}