TangrisJones commited on
Commit
d217cb5
1 Parent(s): 5f6dd19

Update handler.py

Browse files
Files changed (1) hide show
  1. handler.py +1 -1
handler.py CHANGED
@@ -5,7 +5,7 @@ from typing import Dict, List, Any
5
 
6
  class EndpointHandler:
7
  # def __init__(self, path="decapoda-research/llama-65b-hf"):
8
- def __init__(self, path="anon8231489123/vicuna-13b-GPTQ-4bit-128g"):
9
  self.tokenizer = AutoTokenizer.from_pretrained(path)
10
  self.model = AutoModelForCausalLM.from_pretrained(path)
11
 
 
5
 
6
  class EndpointHandler:
7
  # def __init__(self, path="decapoda-research/llama-65b-hf"):
8
+ def __init__(self, path="TangrisJones/vicuna-13b-GPTQ-4bit-128g"):
9
  self.tokenizer = AutoTokenizer.from_pretrained(path)
10
  self.model = AutoModelForCausalLM.from_pretrained(path)
11