flan-t5-small / main.py
suarkadipa's picture
Add files
acd6c1d
raw
history blame
94 Bytes
from fastapi import FastAPI
app = FastAPI()
def read_root():
return {"Hello": "World!"}