Spaces:
Runtime error
Runtime error
Commit
·
1cc4136
1
Parent(s):
14629e0
Update app.py
Browse files
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-
|
7 |
-
model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-2-
|
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 = []):
|