Tim Luka Horstmann commited on
Commit
83ec808
·
1 Parent(s): a2d5223

Switch to llama

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -42,8 +42,8 @@ try:
42
  logger.info("SentenceTransformer model loaded")
43
 
44
  # Load Qwen 2.5 7B model
45
- repo_id = "bartowski/Qwen2.5-7B-Instruct-GGUF"
46
- filename = "Qwen2.5-7B-Instruct-Q4_K_M.gguf"
47
  logger.info(f"Loading {filename} model")
48
  model_path = hf_hub_download(
49
  repo_id=repo_id,
 
42
  logger.info("SentenceTransformer model loaded")
43
 
44
  # Load Qwen 2.5 7B model
45
+ repo_id = "bartowski/Llama-3.2-3B-Instruct-GGUF" # "bartowski/Qwen2.5-7B-Instruct-GGUF"
46
+ filename = "Llama-3.2-3B-Instruct-Q6_K_L.gguf" # "Qwen2.5-7B-Instruct-Q4_K_M.gguf"
47
  logger.info(f"Loading {filename} model")
48
  model_path = hf_hub_download(
49
  repo_id=repo_id,