Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -5,11 +5,7 @@ from transformers import pipeline
|
|
5 |
app = FastAPI()
|
6 |
|
7 |
# Initialize the text generation pipleline
|
8 |
-
|
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():
|