docs: update README Ollama defaults to match config

Update ollamaModel from qwen2.5 to mistral and ollamaNumCtx from
8192 to 2048 to reflect recent config changes.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Justin Bollinger
2026-02-17 11:13:47 -05:00
parent 7a56c7f506
commit ea4cb6c0fa
+4 -4
View File
@@ -419,13 +419,13 @@ The LLM Attack (option 15) uses Ollama to generate password candidates. Configur
```json
{
"ollamaModel": "qwen2.5",
"ollamaNumCtx": 8192
"ollamaModel": "mistral",
"ollamaNumCtx": 2048
}
```
- **`ollamaModel`** — The Ollama model to use for candidate generation (default: `qwen2.5`).
- **`ollamaNumCtx`** — Context window size for the model (default: `8192`).
- **`ollamaModel`** — The Ollama model to use for candidate generation (default: `mistral`).
- **`ollamaNumCtx`** — Context window size for the model (default: `2048`).
- The Ollama URL defaults to `http://localhost:11434`. Ensure Ollama is running before using the LLM Attack.
#### Automatic Found Hash Merging (Download Left Only)