DeepMount00 commited on
Commit
f732f93
·
verified ·
1 Parent(s): cba619e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -84,7 +84,7 @@ MAX_INPUT_TOKEN_LENGTH = int(os.getenv("MAX_INPUT_TOKEN_LENGTH", "4096"))
84
 
85
  device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
86
 
87
- model_id = "DeepMount00/Lexora-Medium-7B"
88
  tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True,)
89
  model = AutoModelForCausalLM.from_pretrained(
90
  model_id,
 
84
 
85
  device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
86
 
87
+ model_id = "DeepMount00/Lexora-Lite-3B"
88
  tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True,)
89
  model = AutoModelForCausalLM.from_pretrained(
90
  model_id,