Skip to content

Commit 088e1b2

Browse files
DatafyingTechclaude
andcommitted
Document real minimum specs and VRAM requirements
Replace the vague requirements table with measured numbers: a VRAM breakdown (3 GB for speech recognition, 3 GB more for the optional cleanup model), what to do at 4 GB, 6 GB and 8 GB, and where the 10 GB of disk actually goes (5.3 GB beside the app, 3.3 GB in the Ollama store). Adds CPU, microphone and internet rows, and points 4 GB cards at gemma3:1b. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent 3e78168 commit 088e1b2

1 file changed

Lines changed: 31 additions & 13 deletions

File tree

README.md

Lines changed: 31 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -69,22 +69,40 @@ what you can dictate. LocalFlow is a like-for-like replacement that runs entirel
6969

7070
## Requirements
7171

72-
| | Minimum | Recommended |
72+
| | Minimum | Recommended |
7373
|---|---|---|
74-
| **OS** | Windows 10 64-bit | Windows 11 |
74+
| **OS** | Windows 10 64-bit, version 1809 | Windows 11 |
75+
| **CPU** | Any 64-bit x86 CPU | 6 cores or more |
76+
| **RAM** | 8 GB | 16 GB |
77+
| **GPU** | None. It runs on CPU, slowly | NVIDIA with **6 GB VRAM**, driver 525+ |
78+
| **Disk** | 10 GB free, split across two drives | SSD |
7579
| **Python** | 3.11 | 3.12 |
76-
| **GPU** | Works on CPU, but slowly | Any NVIDIA RTX card, driver 525+ |
77-
| **Disk** | ~10 GB free ||
78-
| **RAM** | 8 GB | 16 GB+ |
80+
| **Internet** | Only to install | Not needed afterwards |
7981

80-
You do **not** need the CUDA toolkit. The installer pulls everything through pip.
82+
**How much VRAM you actually need.** Speech recognition takes about 3 GB and is capped there by
83+
`asr.gpu_mem_limit_mb`. The optional cleanup model adds about 3 GB more.
8184

82-
[Ollama](https://ollama.com) is optional but recommended — it powers the cleanup that removes filler
83-
words and applies your self-corrections. Without it, LocalFlow still transcribes and applies its
84-
built-in rules, just less cleverly.
85+
| Your GPU | What to expect |
86+
|---|---|
87+
| **8 GB or more** | Everything on, nothing to think about. A GTX 1660, RTX 2060, 3060, 4060 or better. |
88+
| **6 GB** | Works well. Leave headroom by keeping the cleanup model unloaded when idle, which is already the default. |
89+
| **4 GB** | Speech recognition is fine. Use a smaller cleanup model (`ollama pull gemma3:1b`, then set `llm.model: gemma3:1b`) or set `cleanup.level: none`. |
90+
| **No NVIDIA GPU** | Run `install.bat -CPU`. Expect a few seconds per utterance instead of a fraction of a second. |
91+
92+
**Where the 10 GB goes.** About 5.3 GB sits next to LocalFlow: 2.4 GB for the speech model and
93+
2.9 GB for the Python environment. About 3.3 GB more goes to `%USERPROFILE%\.ollama` for the
94+
cleanup model, which is usually on your C: drive. The installer checks both and tells you which one
95+
is short.
96+
97+
You do **not** need the CUDA toolkit or Visual Studio. The installer pulls everything through pip.
98+
Do not install PyTorch into this environment; it brings an incompatible cuDNN.
99+
100+
**What is optional.** [Ollama](https://ollama.com) powers the smart cleanup that removes filler
101+
words, applies your self-corrections and formats lists. Without it, LocalFlow still transcribes and
102+
still applies its built-in rules, just less cleverly. AMD and Intel GPUs are not accelerated yet.
85103

86-
> **No NVIDIA GPU?** LocalFlow still works. Run `install.bat -CPU` and expect a few seconds per
87-
> utterance instead of a fraction of a second. AMD and Intel GPUs are not accelerated yet.
104+
**A microphone**, obviously. Anything works, including a laptop's built-in one. Audio is normalized
105+
before transcription, so a cheap mic and a quiet voice are both fine.
88106

89107
---
90108

@@ -110,8 +128,8 @@ downloads the speech model (~2.5 GB, one time), pulls the cleanup model, and run
110128
That is about **8 GB of downloads** and **10 to 30 minutes** on a normal connection. It tells you
111129
plainly if something is missing and what to do about it.
112130

113-
That 10 GB is not all in one place. About 5 GB goes next to LocalFlow (`.venv` plus `models`) and
114-
about 4 GB goes to `%USERPROFILE%\.ollama`, which is usually on C:. The installer checks both drives
131+
That 10 GB is not all in one place. About 5.3 GB goes next to LocalFlow (`.venv` plus `models`) and
132+
about 3.3 GB goes to `%USERPROFILE%\.ollama`, which is usually on C:. The installer checks both drives
115133
and names the one that is short.
116134

117135
**4. Double-click `run.bat`.**

0 commit comments

Comments
 (0)