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")