From d6da721414d992769b245759f63f87df7c45d9c1 Mon Sep 17 00:00:00 2001 From: Justin Bollinger Date: Fri, 24 Jul 2026 12:06:29 -0400 Subject: [PATCH] feat(llm): default Ollama model to qwen2.5:32b for structured output Co-Authored-By: Claude Opus 4.8 --- config.json.example | 2 +- hate_crack/main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.json.example b/config.json.example index c696519..23bcb3b 100644 --- a/config.json.example +++ b/config.json.example @@ -25,7 +25,7 @@ "hashview_url": "http://localhost:8443", "hashview_api_key": "", "hashmob_api_key": "", - "ollamaModel": "mistral", + "ollamaModel": "qwen2.5:32b", "ollamaNumCtx": 2048, "omenTrainingList": "rockyou.txt", "omenMaxCandidates": 50000000, diff --git a/hate_crack/main.py b/hate_crack/main.py index 68fd1ab..31d3101 100755 --- a/hate_crack/main.py +++ b/hate_crack/main.py @@ -450,7 +450,7 @@ hcatGoodMeasureBaseList = config_parser["hcatGoodMeasureBaseList"] hcatDebugLogPath = os.path.expanduser(config_parser["hcatDebugLogPath"]) ollamaUrl = "http://" + os.environ.get("OLLAMA_HOST", "localhost:11434") -ollamaModel = config_parser.get("ollamaModel", "mistral") +ollamaModel = config_parser.get("ollamaModel", "qwen2.5:32b") ollamaNumCtx = int(config_parser.get("ollamaNumCtx", 2048)) omenTrainingList = config_parser.get("omenTrainingList", "rockyou.txt")