From 8bbcc0530f1a734cddbe4bf08f50569ccaac95c1 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Wed, 22 Apr 2026 21:48:32 -0400 Subject: [PATCH] riddle: switch to abliterated model to stop shadow/fire loops phi4-mini is too conservative and defaults to the same 2-3 answers. Use BALL_MODEL (abliterated Llama 3.2) like WYR does. Co-Authored-By: Claude Sonnet 4.6 --- matrixbot/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrixbot/commands.py b/matrixbot/commands.py index d55d0f5..dfca361 100644 --- a/matrixbot/commands.py +++ b/matrixbot/commands.py @@ -1806,7 +1806,7 @@ async def _generate_riddle() -> dict | None: async with session.post( f"{OLLAMA_URL}/api/chat", json={ - "model": ASK_MODEL, + "model": BALL_MODEL, "stream": False, "messages": [ {"role": "system", "content": system_msg},