CogwiseAI commited on
Commit
3009e98
·
1 Parent(s): 8ade6e8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 = "your_model_name" # Replace with the actual 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