models: 8ball → llama3.2-abliterate 3B, ask/fortune → phi4-mini
Lint / Shell (shellcheck) (push) Successful in 10s
Lint / JS (eslint) (push) Successful in 8s
Lint / Python (ruff) (push) Successful in 4s
Lint / Python deps (pip-audit) (push) Successful in 1m11s
Lint / Secret scan (gitleaks) (push) Successful in 12s

- BALL_MODEL: huihui_ai/llama3.2-abliterate:3b (abliterated 3B,
  follows complex persona instructions without censorship)
- ASK_MODEL + OLLAMA_MODEL: phi4-mini:latest (Phi-4 Mini 3.8B,
  best instruction-following model available within GPU VRAM)
- Update _MODEL_DISPLAY for new model names

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-21 00:33:20 -04:00
parent 21a64174e6
commit bfedd34f1f
2 changed files with 21 additions and 17 deletions
+18 -14
View File
@@ -24,20 +24,24 @@ logger = logging.getLogger("matrixbot")
# Human-readable display names for Ollama model tags
_MODEL_DISPLAY = {
"lotusllm": "Llama 3.2 1B",
"lotusllm:latest": "Llama 3.2 1B",
"lotusllmben:latest": "Llama 2 7B",
"sadiq-bd/llama3.2-1b-uncensored:latest": "Llama 3.2 1B (uncensored)",
"llama3.2:latest": "Llama 3.2 3B",
"llama3.2:1b": "Llama 3.2 1B",
"llama3.3:latest": "Llama 3.3 70B",
"gemma3:latest": "Gemma 3 4B",
"gemma3:1b": "Gemma 3 1B",
"huihui_ai/gemma3-abliterated:1b": "Gemma 3 1B",
"phi4-mini:latest": "Phi-4 Mini",
"deepseek-r1:latest": "DeepSeek R1",
"codellama:latest": "Code Llama 7B",
"dolphin-phi:latest": "Dolphin Phi",
"lotusllm": "Llama 3.2 1B",
"lotusllm:latest": "Llama 3.2 1B",
"lotusllmben:latest": "Llama 2 7B",
"sadiq-bd/llama3.2-1b-uncensored:latest": "Llama 3.2 1B",
"huihui_ai/llama3.2-abliterate:3b": "Llama 3.2 3B",
"huihui_ai/llama3.2-abliterated:3b": "Llama 3.2 3B",
"huihui_ai/gemma3-abliterated:1b": "Gemma 3 1B",
"llama3.2:latest": "Llama 3.2 3B",
"llama3.2:1b": "Llama 3.2 1B",
"llama3.3:latest": "Llama 3.3 70B",
"gemma3:latest": "Gemma 3 4B",
"gemma3:1b": "Gemma 3 1B",
"phi4-mini:latest": "Phi-4 Mini 3.8B",
"deepseek-r1:latest": "DeepSeek R1",
"codellama:latest": "Code Llama 7B",
"dolphin-phi:latest": "Dolphin Phi",
"qwen2.5:latest": "Qwen 2.5 7B",
"qwen2.5:7b": "Qwen 2.5 7B",
}