File size: 471 Bytes
3fe3331
bfa9d6f
3fe3331
 
 
bfa9d6f
 
3fe3331
bfa9d6f
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from fastapi import FastAPI
from transformers import pipeline

app = FastAPI()

app.mount("/", StaticFiles(directory="static", html=True), name="static")

@app.get("/")
def index() -> FileResponse:
    return FileResponse(path="/app/static/index.html", media_type="text/html")


pipe_flan = pipeline("text2text-generation", model="google/flan-t5-small")

@app.get("infer_t5")
def t5(input):
    output = pipe_flan(input)
    return {"output": output[0]["generated_text"]}