DeepSeek (Recommended)
Getting an API Key
- Go to platform.deepseek.com
- Sign up or log in
- Navigate to API Keys and create a new key
- Paste it into Wolffish → Settings → Models → DeepSeek
Models
Reasoning modes
The brain icon next to the message box controls how this model reasons. Click it to cycle through the modes the selected model supports. Two separate ideas combine here:Thinking — whether the model reasons
- Off — the model answers immediately. Fastest and cheapest; ideal for simple, direct tasks.
- On — the model first works through the problem in a dedicated reasoning pass before replying. Slower and uses more tokens, but markedly more accurate on multi-step, logical, or ambiguous tasks.
Effort — how hard it thinks
Only effort-capable models expose this; it applies once thinking is on.- High — standard reasoning depth. The right default for most agentic work.
- Max — the model reasons longer and deeper for the hardest problems. More tokens and latency in exchange for higher quality on complex work.
Button states
Each model shows only the states it genuinely supports. If a model always reasons (can’t be turned off) or has no effort control, the button reflects that and locks where there’s nothing to change. Wolffish remembers your choice per model.
On DeepSeek: Both V4 models support Off / High / Max. In current testing High and Max produce similar depth, but Max is exposed so it benefits automatically if DeepSeek differentiates the tiers later.
Model Selection & Retries
Wolffish communicates with LLMs via nine cloud providers plus a local option, all using purefetch() — no SDKs. Each provider has its own streaming format and tool-calling convention, which wernicke.ts normalizes into a single interface.
Select your Brain model explicitly from the model switch beside the chat input — the model you choose is the one that runs. There’s no cascade or fallback order; for parallel work, switch the chat into workflow mode, where the master can run agents on any connected model, DeepSeek included.
When a cloud Brain hits a transient error, thalamus retries the same model on a backoff schedule (it also uses net.isOnline() for instant offline detection). It does not route you to a different provider on failure.