Getting Started
Setting Up Ollama
The fastest and easiest way to configure local AI features with Ollama.
Snipset includes powerful AI capabilities, such as AI Chat, AI Snippet Generation, and Semantic Search (OmniSearch). To use these features securely and privately, Snipset relies on Ollama, a tool that runs AI models on your computer or through Ollama Cloud for hybrid models.
Are you a Power User? If you want to optimize your storage and run a custom
CPU-only version of Ollama without GPU libraries, see our
Advanced Power User Guide.
Step 1 — Install Ollama (Easiest Method)
- Download the Installer Go to the official Ollama Download Page and click on the "Download for Windows" button to get the standard
.exeinstaller. - Run the Installer Double-click the downloaded
OllamaSetup.exefile and follow the standard on-screen instructions. This process is automatic and takes just a few moments.
Step 2 — Verify Ollama is Running
Ollama runs silently in the background on your machine.
- Open your web browser and navigate to
http://localhost:11434 - If Ollama is running correctly, you will see a simple white page that says: "Ollama is running".
Ollama Tips: Downloading Models Using PowerShell
Now that Ollama is installed, you need to "pull" (download) the AI models using the PowerShell terminal. Follow these strict step-by-step instructions:
- Open PowerShell Press the
Windowskey on your keyboard, type PowerShell, and pressEnterto open the terminal window. - Download the Chat Model In the terminal, type the pull command for the default chat model and press
Enter:This is a cloud-hybrid model under 1 KB locally: instant answers with no local RAM load, but it needs internet and Ollama Cloud sign-in. For fully offline chat, pullollama pull gemma4:31b-cloudllama3.2:3b(2.0 GB) instead. Wait for the progress bar to reach 100% and show "success". - Download the Embedding Model Next, type this command and press
Enter. This downloads the 229 MB embedding model required for Semantic Search:Wait again for the "success" confirmation.ollama pull hf.co/lmstudio-community/embeddinggemma-300m-qat-GGUF - Verify Your Models Finally, type this command and press
Enterto list your downloaded models and ensure they are ready to use:You should see your chat model (e.g.ollama listgemma4:31b-cloud) andhf.co/lmstudio-community/embeddinggemma-300m-qat-GGUFlisted.
Step 3 — Connect Snipset to Ollama
- Go to Snipset → Settings → AI & Models → AI Configuration.
- Ensure Base URL is
http://localhost:11434(orhttp://127.0.0.1:11434— both are accepted; app default ishttp://127.0.0.1:11434). - Look for the green Online indicator next to the URL.
- Select your Chat Model (
gemma4:31b-cloud, orllama3.2:3bfor fully offline chat) and Embed Model (hf.co/lmstudio-community/embeddinggemma-300m-qat-GGUF) from the dropdowns.
Troubleshooting
Red "Offline" indicator in Snipset?
- Open Task Manager and look for
ollama.exe. If absent, start Ollama manually from your Start Menu. - Ensure the Base URL in Snipset exactly matches the port Ollama is using (default 11434).