Skip to main content

Configure LLM Backend

NeoMind's AI Agent and AI Chat rely on an LLM backend to understand natural language and execute instructions. This guide covers configuring local or cloud LLMs via Web UI or CLI.

Backend Overview

NeoMind supports 10+ LLM backends in two deployment modes:

CategoryBackendDefault ModelNotes
Local (zero config)Built-in llama.cppCurated platform models (Qwen 3.5 / Gemma 4 / Ling-3.0-tiny / LFM2.5, etc.)Runtime bundled in the Docker image, one-click download in the wizard, see section below
LocalOllamaqwen3.5:4bFully offline
Localllama.cpp (self-hosted)Loaded at startupRun llama-server yourself
CloudOpenAIgpt-4.1-miniAPI Key required
CloudAnthropicclaude-sonnet-4-5API Key required
CloudGooglegemini-2.5-flashAPI Key required
CloudxAIgrok-3-miniAPI Key required
CloudQwen (Alibaba)qwen-plusDashScope Key required
CloudDeepSeekdeepseek-chatAPI Key required
CloudGLM (Zhipu)glm-4.5-flashAPI Key required
CloudMiniMaxMiniMax-M2API Key required
CloudCustom gatewayAnyOpenAI-compatible endpoint (type OpenAI with a custom endpoint)

Recommended: the built-in MiniCPM5-2B first (Q4_K_M, 1.5GB, 3GB RAM floor, serve at its default 8K window — 81% tool accuracy on the 2026-09 corrected eval, same tier as cloud deepseek-v4-flash; Apache-2.0 redistributable). With 4GB+ RAM and a need for the strongest agent, pick Qwen3.5-4B (requires a 16K window — degrades badly at 8K). On the Ollama path use qwen3.5:4b.

Built-in Local Models (Zero Config)

Since 0.9.16, the Docker image ships with the llama.cpp runtime plus officially curated models. In the LLM Backend step of the first-run wizard (or via the built-in model card under Settings → LLM Backends), you can download and use them directly:

  • One-click download — The model list comes from a remote model catalog (models/catalog.json in camthink-ai/NeoMind-Runtimes, so new models keep arriving without upgrading the platform); when offline, it automatically falls back to the built-in curated list
  • Hardware-based recommendations — The download page lists each model's RAM requirements (e.g. MiniCPM5-2B: 1.5GB, minimum 3GB RAM; Ling-3.0-tiny: 4.8GB, minimum 6GB — note Ling suits 8K short sessions only)
  • Import your own GGUF — The built-in model wizard offers an "Import Local Model" card: drop in a .gguf file (streamed upload, no extra memory usage) or enter a server path; the platform auto-parses the name/context/quantization info, verifies and stores it with SHA-256, and imported models participate in backend switching just like curated ones (context capped at 128K)
  • Works out of the box — Once the first download completes, the model is automatically registered as a local backend and runs with the model's own optimal sampling parameters (temperature / top-p / top-k)

Step 1: Install Ollama and Pull a Model (Local Backend)

Install from ollama.com. After install, Ollama listens on http://localhost:11434 by default.

# Install Ollama (macOS / Linux)
curl -fsSL https://ollama.com/install.sh | sh

# Recommended model (Chinese + tool calling + 128K context)
ollama pull qwen3.5:4b

# For vision capability (image input), also pull a vision model
ollama pull qwen3.5:4b-vl # or llava / minicpm-v etc.

Note: Use qwen3.5:4b. Earlier docs mentioned ministral-3:3b / deepseek-r1:7b — these are no longer recommended (unstable tool calling / too large for edge hardware).

Skip this step if using a cloud backend (OpenAI / Anthropic / GLM, etc.).

Step 2: Open LLM Backend Settings

Navigate to Settings → LLM Backends:

LLM backend list — click Add Backend

Backends are presented as cards (built-in model / Ollama / llama.cpp / Cloud AI). Click Add Instance on the corresponding card to open the configuration form.

Step 3: Fill in Backend Details

Ollama (Local)

FieldValue
TypeOllama
Endpointhttp://localhost:11434 (default; use the host IP for remote)
Modelqwen3.5:4b (must match the ollama pull name)
StreamEnabled (recommended for better UX)

Cloud (OpenAI example)

FieldValue
TypeOpenAI-compatible protocol (or Anthropic protocol)
API KeyYour API Key (e.g. sk-...)
Base URLLeave empty for official; fill in for custom gateway
Modelgpt-4.1-mini (or gpt-4o / gpt-4-turbo, etc.)

Chinese providers: Qwen / DeepSeek / GLM / MiniMax all use OpenAI-compatible protocols. NeoMind has built-in default endpoints — just fill in the API Key and model name.

Custom Gateway (OpenAI-Compatible Endpoint)

If you use vLLM, Together AI, OpenRouter, or another self-hosted/third-party gateway, pick the OpenAI-compatible protocol on the Cloud AI card and fill in:

  • base_url: Gateway URL (e.g. https://api.openrouter.ai/v1)
  • api_key: Gateway key
  • model: Model name exposed by the gateway
LLM backend configuration form

After saving, NeoMind probes the backend's capabilities (tool calling, multimodal, context window) and writes capability tags automatically.

Step 4: Set Default and Verify

Select the backend in the model picker at the top of AI Chat to make it the system default (the current default carries an "Active" badge), or activate it with neomind llm activate <ID>.

Then open AI Chat and send a greeting to verify:

AI Chat verifying LLM connection

If AI Chat doesn't respond, check:

  • Is Ollama running? ollama list should show pulled models
  • Cloud backend: Is the API Key valid? Is the network reachable?
  • More in Troubleshooting

Option 2: CLI Setup

Prefer the terminal? These commands cover the full workflow from creation to activation.

1. List Existing Backends

neomind llm list

2. List Available Models (Ollama)

# List models pulled in Ollama
neomind llm models

# Or specify a remote Ollama
neomind llm models --endpoint http://192.168.1.100:11434

3. Create a Backend

# Ollama local
neomind llm create --name local --type ollama \
--endpoint http://localhost:11434 --model qwen3.5:4b

# OpenAI cloud
neomind llm create --name openai --type openai \
--endpoint https://api.openai.com/v1 \
--model gpt-4.1-mini --api-key sk-xxxx

# GLM cloud (OpenAI-compatible)
neomind llm create --name glm --type openai \
--endpoint https://open.bigmodel.cn/api/paas/v4 \
--model glm-4-flash --api-key xxx.xxx.xxx

# Custom gateway (OpenRouter etc., via the OpenAI-compatible protocol)
neomind llm create --name router --type openai \
--endpoint https://openrouter.ai/api/v1 \
--model anthropic/claude-3.5-sonnet --api-key sk-or-xxxx

A backend ID is returned on success (e.g. local or a random ID).

4. Test the Connection

neomind llm test local

Returns model info and response status = connection OK.

5. Activate as Default

neomind llm activate local

6. Other Common Commands

# View backend details (with capability tags)
neomind llm get local

# Update model or parameters
neomind llm update local --model qwen3.5:8b --temperature 0.5

# Delete a backend
neomind llm delete local
📖 CLI Command Reference
CommandDescriptionKey Flags
llm listList all backends
llm get <id>View details
llm modelsList available Ollama models--endpoint <url>
llm createCreate a backend--name --type --endpoint --model --api-key --temperature
llm update <id>Update config--model --endpoint --api-key --temperature
llm test <id>Test connection
llm activate <id>Set as default
llm delete <id>Delete

Thinking Effort

For models that support reasoning, you can control the thinking effort uniformly in the backend capability panel: none / low / medium / high (some backends offer finer levels). NeoMind abstracts this into a single switch and maps it automatically to each backend's native parameters — Ollama's think levels, reasoning_effort for OpenAI / custom / GLM / Google, thinking for DeepSeek / Anthropic, and enable_thinking for Qwen. Backends that don't support reasoning show a read-only badge instead.

Ollama endpoint

NeoMind calls Ollama's native /api/chat endpoint (not /v1/chat/completions) — which is why thinking chains (thinking), native multimodality, and Ollama's native streaming/tool-call protocol all work. For curl examples during self-testing and the common 404 troubleshoot, see Troubleshooting — LLM / Ollama.

Multimodal (Vision) Capability

NeoMind supports image input and visual analysis. Vision capability depends on the model:

  • Ollama: After pulling a vision model (e.g. qwen3.5:4b-vl / llava / minicpm-v), you can upload images in AI Chat.
  • Cloud: gpt-4o / gpt-4o-mini / claude-sonnet-4-5 / gemini-2.5-flash / qwen-vl / glm-4v natively support vision.

NeoMind auto-detects multimodal capability (via LiteLLM registry + /api/show runtime probe + name heuristic matching). If auto-detection is inaccurate, manually toggle Multimodal in the backend detail page.

Setting the Default Backend

A NeoMind instance can have multiple LLM backends, but only one is marked as default. The default backend is used for:

  • Initial AI Chat conversations
  • Scheduled Agent executions
  • LLM analysis in the rule engine
Switching the default
  • Web UI: model picker at the top of AI Chat → click the backend to set as default
  • CLI:
# List all backends and see which is default
neomind llm list

# Set a backend as default
neomind llm activate local

Next Steps


Last updated: 2026-09-08