NeoMind Quick Start Guide
Overviewβ
NeoMind is an edge AI platform that brings the power of Large Language Models (LLM) to CamThink AI cameras and IoT device management and automation. Through a natural language interface, you can easily query device status, create automation rules, and have intelligent conversations with the AI assistant.
Core Features:
- LLM-Powered: Supports multiple LLM backends including Ollama, OpenAI, and Anthropic
- Edge Deployment: Fully offline operation with secure, local data
- Device Management: Supports MQTT protocol with automatic device discovery and registration
- Automation Engine: Event-driven rule engine for intelligent device coordination
- AI Agents: Autonomous agents for complex task execution
- Cross-Platform Support: Native desktop applications for macOS, Windows, and Linux
System Requirements:
- Operating System: macOS 11+, Windows 10+, Ubuntu 20.04+
- Memory: 8GB RAM (16GB+ recommended)
- Storage: 5GB available space
- Network: Supports offline operation (internet connection recommended for model download)
1. Installation and Registrationβ
1.1 Download and Installβ
Visit the NeoMind official release page and select the installer for your operating system:
- macOS: Download the
.dmgfile (supports both Apple Silicon and Intel chips) - Windows: Download the
.msior.exeinstaller - Linux: Download the
.AppImageor.debpackage
macOS Installation Steps:
- Double-click the downloaded
.dmgfile and drag NeoMind to the Applications folder

- Important: Before launching NeoMind for the first time, execute the following command (macOS security requirement):
sudo xattr -rd com.apple.quarantine /Applications/NeoMind.app
Windows Installation Steps:
Double-click the .msi or .exe file and follow the installation wizard.
Linux Installation Steps:
# AppImage method (recommended)
chmod +x neomind_0.5.11_amd64.AppImage
./neomind_0.5.11_amd64.AppImage
# deb package method
sudo dpkg -i neomind_0.5.11_amd64.deb
sudo apt-get install -f # Install dependencies
1.2 First Launch and Registrationβ
When you launch NeoMind for the first time, the system will guide you through the initial setup.
Step 1: Launch the application to enter the welcome screen

Step 2: Create an administrator account

Fill in the following information:
- Username: Administrator account name (3-20 characters)
- Password: Strong password (at least 8 characters, including letters and numbers)
- Confirm Password: Re-enter the password
Step 3: Configure timezone and complete registration

After successful registration, the system will automatically redirect to the login screen.
1.3 Login to the Systemβ
Use the administrator account you just created to log in to NeoMind.

Note:
- NeoMind supports local offline login with data stored in a local database
- After the first login, the system will automatically create default configuration files
2. System Configurationβ
2.1 Configure LLM Backendβ
NeoMind's core capabilities come from Large Language Models. We recommend using Ollama for local deployment to achieve fully offline operation.
Prerequisites:
- Local LLM (Ollama recommended) or other LLM backend (OpenAI, Anthropic, DeepSeek, etc.)
Recommended Configuration: Ollama Local Deployment
# Linux/macOS install Ollama
curl -fsSL https://ollama.com/install.sh | sh
# Pull recommended models
ollama pull ministral-3:3b # Lightweight model (3B parameters)
ollama pull deepseek-r1:7b # High-performance model (7B parameters)
Verify Ollama Installation:
Before configuring NeoMind, verify that Ollama is running properly:
# Test Ollama API
curl http://localhost:11434/api/version
# Test model inference
ollama run ministral-3:3b "Hello"

Configuration Steps:
Step 1: Go to Settings page and select "LLM Configuration"

Step 2: Add LLM backend

Click "Add Backend" and select the backend type according to your needs:
Configure Ollama (Local Deployment, Recommended):
- Backend Type: Select Ollama
- Name: e.g., "Local Ollama"
- Endpoint Address:
http://localhost:11434(default port) - Model: Select the pulled model (e.g.,
ministral-3:3b)
Configure OpenAI (Cloud Service):
- Backend Type: Select OpenAI
- Name: e.g., "OpenAI GPT-4"
- Endpoint Address:
https://api.openai.com/v1(default) - API Key: Enter your OpenAI API Key
- Model: Select a model (e.g.,
gpt-4,gpt-3.5-turbo)
Supported LLM Backend Comparison:
| Backend | Default Endpoint | Features | Use Cases |
|---|---|---|---|
| Ollama | http://localhost:11434 | Local deployment, fully offline | Edge devices, high privacy requirements |
| OpenAI | https://api.openai.com/v1 | Cloud service, powerful performance | Requires strongest model capabilities |
Verify Configuration:
After completing the configuration, click the "Test Connection" button to ensure NeoMind can successfully connect to the LLM backend.
