Tonic commited on
Commit
102d08e
·
1 Parent(s): 0110e9b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -8,8 +8,8 @@ description = "A State-of-the-Art Large-scale Pretrained Response generation mod
8
  examples = [["How are you?"]]
9
 
10
 
11
- tokenizer = AutoTokenizer.from_pretrained("TheBloke/Llama-2-7b-Chat-GPTQ")
12
- model = AutoModelForCausalLM.from_pretrained("TheBloke/Llama-2-7b-Chat-GPTQ")
13
 
14
 
15
  def predict(input, history=[]):
 
8
  examples = [["How are you?"]]
9
 
10
 
11
+ tokenizer = AutoTokenizer.from_pretrained("huggingface-projects/llama-2-7b-chat")
12
+ model = AutoModelForCausalLM.from_pretrained("huggingface-projects/llama-2-7b-chat")
13
 
14
 
15
  def predict(input, history=[]):