ranranrunforit commited on
Commit
9c9c9b7
·
verified ·
1 Parent(s): 433e48f

Update llm_local.py

Browse files
Files changed (1) hide show
  1. llm_local.py +4 -3
llm_local.py CHANGED
@@ -36,10 +36,11 @@ MODEL_ZOO = {
36
  # 🎯 Well-Tuned: after you publish your LoRA-merged GGUF, uncomment and edit
37
  # this line (repo = your HF id, filename = the .gguf you uploaded). It will
38
  # then appear in the Model tab as the fast Translator sub-agent.
39
- # "Chan-Tuned Qwen3-1.7B · my fine-tune": (
40
- # "ranranrunforit/chan-compass-qwen3-1.7b-gguf", "chan-qwen3-1.7b-q8_0.gguf"),
41
  }
42
- FAST_MODEL = "Qwen3-1.7B · Tiny Titan (≤4B award class)"
 
43
  DEFAULT_MODEL = "Qwen3-4B · default — fast + smart, still ≤4B"
44
 
45
  _THINK_RE = re.compile(r"<think>.*?</think>", re.S)
 
36
  # 🎯 Well-Tuned: after you publish your LoRA-merged GGUF, uncomment and edit
37
  # this line (repo = your HF id, filename = the .gguf you uploaded). It will
38
  # then appear in the Model tab as the fast Translator sub-agent.
39
+ "Chan-Tuned Qwen3-1.7B · my fine-tune": (
40
+ "ranranrunforit/chan-compass-qwen3-1.7b-gguf", "chan-compass-qwen3-1.7b-gguf.Q8_0.gguf"),
41
  }
42
+ # FAST_MODEL = "Qwen3-1.7B · Tiny Titan (≤4B award class)"
43
+ FAST_MODEL = "Chan-Tuned Qwen3-1.7B · my fine-tune"
44
  DEFAULT_MODEL = "Qwen3-4B · default — fast + smart, still ≤4B"
45
 
46
  _THINK_RE = re.compile(r"<think>.*?</think>", re.S)