t5-text-gen / main.py
kghamilton89
Commit new files
a73f431
raw
history blame
94 Bytes
from fastapi import FastAPI
app = FastAPI()
def read_root():
return {"Hello": "World!"}