rohitjakkam commited on
Commit
7a70720
·
verified ·
1 Parent(s): ac88d35

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -5,7 +5,11 @@ from transformers import pipeline
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():
 
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-small-8k-instruct", trust_remote_code=True)
12
+ pipe(messages)
13
 
14
  @app.get("/")
15
  def home():