flan-t5-small / main.py
harithapliyal's picture
Create main.py
eb84534 verified
raw
history blame
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}