Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ app = FastAPI()
|
|
8 |
messages = [
|
9 |
{"role": "user", "content": "Who are you?"},
|
10 |
]
|
11 |
-
pipe = pipeline("text-generation", model="microsoft/Phi-3-
|
12 |
pipe(messages)
|
13 |
|
14 |
@app.get("/")
|
|
|
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("/")
|