NGIBS is model-agnostic, but performance is hardware-dependent. Choose the right Ollama model for your machine.
Because NGIBS orchestrates complex reasoning loops (especially in Deep Search mode), the underlying LLM needs to be competent at tool-use, context aggregation, and logic. A model that is too small might hallucinate during research; a model that is too large will bottleneck your system.
Stick to lightweight models (under 9 Billion parameters). They are fast, responsive, and take up very little space, but they may occasionally struggle with the heaviest Deep Search recursive reasoning.
The gold standard for small models. Unbelievably smart for its size and perfectly capable of handling Live Search scraping.
ollama run llama3.1:8b
Microsoft's tiny model punches way above its weight class. Very fast, ideal for Quick Search programming questions.
ollama run phi3
The sweet spot for NGIBS. These models have excellent multi-step context aggregation and handle agentic workflows brilliantly.
Built jointly by Mistral and NVIDIA, this model has a massive 128k context window, making it the absolute best choice for reading massive documents and scraping long web pages.
ollama run mistral-nemo
Cohere designed this model specifically for Retrieval-Augmented Generation (RAG) and tool use. If you have 32GB of RAM, this is the ultimate Deep Search engine.
ollama run command-r
For running massive models locally to achieve unparalleled reasoning. Expect GPT-4 class logic running entirely offline.
Massive, brilliant, and highly capable. It will rarely make logical errors during Deep Search compilation.
ollama run llama3.1:70b
Incredible coding and multi-lingual capabilities. A behemoth that requires serious hardware.
ollama run qwen2.5:72b
If you plan to use the Context Aware mode or upload File Attachments, NGIBS uses ChromaDB to store vector embeddings. You need a dedicated, tiny embedding model to convert your text into math.
A highly efficient embedding model that maps text locally. Fast, accurate, and requires almost zero resources.
ollama pull nomic-embed-text
You do not need to use the terminal to switch models once Ollama is installed.
mistral-nemo) in the text box and click Pull Model. NGIBS will display a progress bar as it downloads.