Update app.py
Browse files
app.py
CHANGED
@@ -74,7 +74,7 @@ st.markdown("""
|
|
74 |
""", unsafe_allow_html=True)
|
75 |
|
76 |
# Load the model and tokenizer from Hugging Face Hub
|
77 |
-
model_name = "
|
78 |
model = AutoModelForCausalLM.from_pretrained(model_name)
|
79 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
80 |
|
|
|
74 |
""", unsafe_allow_html=True)
|
75 |
|
76 |
# Load the model and tokenizer from Hugging Face Hub
|
77 |
+
model_name = "tiiuae/falcon-7b-instruct"
|
78 |
model = AutoModelForCausalLM.from_pretrained(model_name)
|
79 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
80 |
|