Troubleshooting

Most TurboLLM problems fall into a handful of buckets. Find your symptom below, apply the fix, and you'll be back to generating in a minute. Anything not covered here has a home in Discord or GitHub issues at the bottom of this page.

Quick reference

Scan the table for your symptom, then jump to the matching section for details.

SymptomFix
"TurboLLM requires Node.js 22 or newer"Upgrade Node to 22+ from nodejs.org
Model won't load / out of memory (OOM)Pick a smaller quant, lower GPU offload, or close other GPU apps
Windows Defender / SmartScreen promptAllow the upstream llama-server binary once on first run
Port already in useStart on a different port: turbollm --port 9000
Slow generationRaise GPU offload; enable flash attention / NextN where supported

Node.js version

If you see the message "TurboLLM requires Node.js 22 or newer", your installed Node is too old. TurboLLM needs Node.js 22 or newer.

Download and install the current release from nodejs.org, then check your version:

node --version

Once it reports v22 or higher, run TurboLLM again.

Model won't load / out of memory

If a model fails to load or you hit an out-of-memory (OOM) error, your GPU doesn't have enough free memory for that model as configured. Try any of these, in order:

Windows Defender / SmartScreen prompt

On Windows, the first time you launch a model you may see a Windows Defender or SmartScreen prompt. This is the upstream llama-server binary running for the first time, not TurboLLM itself.

Allow it once

Approve the prompt a single time and Windows will remember it for future runs.

Port already in use

If TurboLLM's default port is taken by another process, start it on a different port:

$turbollm --port 9000

Slow generation

If tokens are coming out slower than you expect, make sure TurboLLM is using your GPU to its fullest:

Still stuck?

For anything not covered here, reach out:

Discord

Ask the community and the team in real time: discord.gg/v6kRbV7nC

GitHub issues

Report a bug or request a feature: github.com/mohitsoni48/TurboLLM/issues