Skip to main content
Bumblebee uses Ollama for local inference. VRAM requirements depend on which models you run and how large a context window you need.

GPU VRAM guide

Example GPUs: RX 7600 8 GB, RTX 3050 8 GB, Arc A770 8 GBSmaller or quantized models only. Use aggressive quantization or point reflex at gemma4:e4b in entity YAML to lighten load. CPU-only via Ollama works for experiments but expect slow turns.

Default models

The embedding model loads on demand alongside the chat model — there is no separate embedding service. Both reflex and deliberate use the same weights with different token budgets, so only one model needs to be loaded at a time.

Optional models

Context window and VRAM

Larger context windows use more memory. The default max_context_tokens: 32768 (32K) is a good balance for 16 GB cards.

Ollama settings

For single-GPU setups, these defaults prevent overcommitting. The ollama:reset npm script sets them automatically.

MoE note

Gemma 4 uses a Mixture-of-Experts architecture. Active parameters per token are lower than the full model size, so actual VRAM usage during inference can be less than the raw parameter count suggests. Real-world fit depends on context length, thinking budget, quantization level, and concurrent platform activity.