rohitjakkam commited on
Commit
e00041b
·
verified ·
1 Parent(s): db530e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -5
app.py CHANGED
@@ -5,11 +5,7 @@ from transformers import pipeline
5
  app = FastAPI()
6
 
7
  # Initialize the text generation pipleline
8
- messages = [
9
- {"role": "user", "content": "Who are you?"},
10
- ]
11
- pipe = pipeline("text-generation", model="microsoft/Phi-3-mini-4k-instruct", trust_remote_code=True)
12
- pipe(messages)
13
 
14
  @app.get("/")
15
  def home():
 
5
  app = FastAPI()
6
 
7
  # Initialize the text generation pipleline
8
+ pipe = pipeline("text2text-generation", model="google/flan-t5-small")
 
 
 
 
9
 
10
  @app.get("/")
11
  def home():