Valerioweb commited on
Commit
1cc4136
·
1 Parent(s): 14629e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -3,8 +3,8 @@ import gradio as gr
3
  import torch
4
 
5
 
6
- tokenizer = AutoTokenizer.from_pretrained("meta-llama/Llama-2-70b-chat-hf")
7
- model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-2-70b-chat-hf")
8
 
9
 
10
  def launch(input, history = []):
 
3
  import torch
4
 
5
 
6
+ tokenizer = AutoTokenizer.from_pretrained("meta-llama/Llama-2-7b-chat-hf")
7
+ model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-2-7b-chat-hf")
8
 
9
 
10
  def launch(input, history = []):