Update app.py
Browse files
app.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
from transformers import pipeline
|
| 3 |
|
| 4 |
-
model_id = "
|
| 5 |
pipe = pipeline("text-generation", model=model_id)
|
| 6 |
|
| 7 |
def load_answer(question):
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
from transformers import pipeline
|
| 3 |
|
| 4 |
+
model_id = "microsoft/Phi-3-mini-4k-instruct"
|
| 5 |
pipe = pipeline("text-generation", model=model_id)
|
| 6 |
|
| 7 |
def load_answer(question):
|