Yakshith15's picture
Upload 3 files
aaaf23a verified
Raw
History Blame Contribute Delete
381 Bytes
from fastapi import FastAPI
from transformers import pipeline
#create a new FastAPI app instance
app=FastAPI()
pipe = pipeline("text2text-generation", model="google/flan-t5-small")
@app.get("/")
def home():
return {"message":"Hello World!"}
@app.get("/generate")
def generate(text:str):
output=pipe(text)
return {"output":output[0]['generated_text']}