yash-srivastava19 commited on
Commit
91772d4
·
1 Parent(s): 3e63fcb

Create app.py

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