Areid987 commited on
Commit
d79f77d
1 Parent(s): fdbee4a

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from fastapi import FastAPI
2
+ from transformers import pipeline
3
+
4
+ app = FastAPI()
5
+
6
+ pip = pipeline("text2text-generation", model="google/flan-t5-small")
7
+
8
+ @app.get("/generate")
9
+ def generate(text: str):
10
+ output = pipe(text)
11
+
12
+ return {"output": output[0]["generated_text"]}