kshabana commited on
Commit
a35915a
·
verified ·
1 Parent(s): 82b3215

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -3,8 +3,8 @@ from transformers import AutoModelForCausalLM, AutoTokenizer
3
 
4
  # Load the LLaMA 3 model and tokenizer
5
  model_name = "kshabana/GOAT-llama3.1-v0.1" # Replace with the actual model path if different
6
- model = AutoModelForCausalLM.from_pretrained(GOAT-llama3.1-v0.1-Q4_K_M.gguf)
7
- tokenizer = AutoTokenizer.from_pretrained(tokenizer.json)
8
 
9
  def generate_response(user_input):
10
  inputs = tokenizer.encode(user_input, return_tensors="pt")
 
3
 
4
  # Load the LLaMA 3 model and tokenizer
5
  model_name = "kshabana/GOAT-llama3.1-v0.1" # Replace with the actual model path if different
6
+ model = AutoModelForCausalLM.from_pretrained("GOAT-llama3.1-v0.1-Q4_K_M.gguf")
7
+ tokenizer = AutoTokenizer.from_pretrained("tokenizer.json")
8
 
9
  def generate_response(user_input):
10
  inputs = tokenizer.encode(user_input, return_tensors="pt")