Ollama Herd

August 16, 2026 · View on GitHub

PyPI version License: MIT Python 3.11+ Website

Turn all your devices into one local AI cluster. Ollama Herd is a smart inference router and load balancer that auto-discovers Ollama nodes via mDNS, routes LLMs, image generation, speech-to-text, and embeddings to the optimal device using intelligent scoring. OpenAI-compatible API. Zero config. Zero cost.

ollamaherd.com — full docs, guides, and the live dashboard walkthrough.

Why Ollama Herd?

  • Your spare Mac is wasting compute — pool all your devices into one fleet
  • Single Ollama bottlenecks agents — distribute requests across machines automatically
  • Cloud APIs cost $450-1,800/month at fleet scale — local inference is zero marginal cost
  • No config files, no Docker, no Kubernetes — two commands, mDNS auto-discovery
  • Not just LLMs — routes image generation (FLUX), speech-to-text (Qwen3-ASR), and embeddings too
  • The fleet gets smarter over time — capacity learning, thermal awareness, meeting detection

Quick Start

pip install ollama-herd

Or with Homebrew (macOS/Linux):

brew tap geeks-accelerator/ollama-herd
brew trust geeks-accelerator/ollama-herd   # Homebrew 6.x requires this for third-party taps
brew install ollama-herd

Without the brew trust line, Homebrew 6.0+ stops with "Refusing to load formula … from untrusted tap". Older Homebrew doesn't need it and ignores it harmlessly. The install builds every dependency from source (Homebrew runs pip --no-binary :all:), including a Rust compile of pydantic-core — budget ~25 minutes, not the couple of minutes a bottled formula takes.

On your router machine:

herd

On each device running Ollama:

herd-node

That's it. The node discovers the router via mDNS and starts sending heartbeats. No config files needed.

To skip mDNS and connect directly: herd-node --router-url http://router-ip:11435

Features

FeatureDescription
Smart ScoringRoutes to the best device based on thermal state, memory fit, queue depth, latency, affinity, availability, and context fit
Zero-Config DiscoverymDNS auto-discovery — no IPs, no config files, no manual setup
Multimodal RoutingLLMs, vision (gemma3, llava, llama3.2-vision), embeddings, image gen (FLUX via mflux/DiffusionKit), speech-to-text (Qwen3-ASR)
Live DashboardFleet overview, trends, model insights, per-app analytics, benchmarks, health, recommendations, settings
Capacity Learning168-slot weekly behavioral model per device — learns when your machines are available
Auto-Retry & FallbacksTransparent retry on failure + client-specified backup models
Thinking Model SupportAuto-detects DeepSeek-R1, QwQ, phi-4-reasoning and inflates token budgets to prevent empty responses
Smart BenchmarksAuto-discovers fleet, benchmarks all 5 model types, tracks performance over time
Dynamic ContextMeasures actual token usage, auto-adjusts context windows to free KV cache memory
Fleet IntelligenceAI-generated fleet briefings with health summaries, trend analysis, and actionable recommendations
Health Engine18 automated checks: memory, thermal, context waste, thrashing, timeouts, errors, zombies, priority models, and more
Request TaggingPer-app analytics via tags — track usage, latency, and errors per application or team

Usage

Point any OpenAI-compatible client at the router:

from openai import OpenAI

client = OpenAI(base_url="http://router-ip:11435/v1", api_key="not-needed")
response = client.chat.completions.create(
    model="llama3.2:3b",
    messages=[{"role": "user", "content": "Hello!"}],
    stream=True,
)
for chunk in response:
    print(chunk.choices[0].delta.content, end="")

Or use the Ollama API directly:

curl http://router-ip:11435/api/chat -d '{
  "model": "llama3.2:3b",
  "messages": [{"role": "user", "content": "Hello!"}]
}'

Model Fallbacks

curl http://router-ip:11435/v1/chat/completions -d '{
  "model": "llama3.3:70b",
  "fallback_models": ["qwen2.5:32b", "qwen2.5:7b"],
  "messages": [{"role": "user", "content": "Hello!"}]
}'

The router tries each model in order, falling back seamlessly if one is unavailable.

Beyond LLMs

The same router handles five model types — install a backend on any node and it's automatically detected.

Vision (Image Understanding)

from openai import OpenAI
client = OpenAI(base_url="http://router-ip:11435/v1", api_key="not-needed")

response = client.chat.completions.create(
    model="gemma3:27b",  # or llama3.2-vision, llava, moondream
    messages=[{
        "role": "user",
        "content": [
            {"type": "text", "text": "What's in this image?"},
            {"type": "image_url", "image_url": {"url": "data:image/png;base64,..."}}
        ]
    }]
)

Works with any Ollama vision model. Both OpenAI and Ollama formats supported — the router auto-converts.

Image Generation

# Install a backend (any node)
uv tool install mflux

# Generate
curl -o sunset.png http://router-ip:11435/api/generate-image \
  -d '{"model": "z-image-turbo", "prompt": "a sunset over mountains", "width": 1024, "height": 1024}'

Supports mflux (FLUX), DiffusionKit (Stable Diffusion 3/3.5), and Ollama native models. See Image Generation Guide.

Speech-to-Text

# Install backend (any node)
pip install 'mlx-qwen3-asr[serve]'

# Transcribe
curl http://router-ip:11435/api/transcribe -F "file=@meeting.wav" -F "model=qwen3-asr"

Embeddings

curl http://router-ip:11435/api/embed \
  -d '{"model": "nomic-embed-text", "input": ["first document", "second document"]}'

Works with any Ollama embedding model: nomic-embed-text, mxbai-embed-large, all-minilm, snowflake-arctic-embed.

Works With

Ollama Herd is a drop-in replacement — just change the base URL:

FrameworkIntegration
Open WebUISet Ollama URL to http://router-ip:11435 in admin settings
LangChainChatOpenAI(base_url="http://router-ip:11435/v1")
CrewAILLM(base_url="http://router-ip:11435")
Aider--openai-api-base http://router-ip:11435/v1
Continue.devSet apiBase in config.json
OpenHandsLLM_BASE_URL=http://router-ip:11435/v1
OpenClawSee OpenClaw Integration Guide
Any OpenAI clientChange base_url to http://router-ip:11435/v1

Platform Support

Ollama Herd runs on macOS, Linux, and Windows — anywhere Ollama runs.

FeaturemacOSLinuxWindows
LLM routing, scoring, queuesYesYesYes
Embeddings proxyYesYesYes
mDNS auto-discoveryYesYesYes
Dashboard & tracesYesYesYes
Image gen (mflux, DiffusionKit)Yes (Apple Silicon)----
Image gen (Ollama native)YesYesYes
Speech-to-text (MLX)Yes (Apple Silicon)----
Meeting detection (camera/mic)Yes----
Memory pressure detectionYesYes--

Core routing works identically on all platforms. macOS-only features degrade gracefully.

Architecture

┌─────────────────────────────────────────────────────┐
│  Client (OpenAI SDK, curl, any HTTP client)         │
└──────────────────────┬──────────────────────────────┘


┌─────────────────────────────────────────────────────┐
│  Herd Router (:11435)                               │
│  ┌────────────┐ ┌──────────┐ ┌───────────────────┐  │
│  │  Scoring    │ │  Queue   │ │  Streaming Proxy  │  │
│  │  Engine     │ │  Manager │ │  (format convert) │  │
│  └────────────┘ └──────────┘ └───────────────────┘  │
│  ┌────────────┐ ┌──────────┐ ┌───────────────────┐  │
│  │  Trace     │ │  Health  │ │  Dashboard +      │  │
│  │  Store     │ │  Engine  │ │  SSE + Charts     │  │
│  └────────────┘ └──────────┘ └───────────────────┘  │
└──────────┬──────────────────────────┬───────────────┘
           │ heartbeats               │ inference
           ▼                          ▼
┌──────────────────┐       ┌──────────────────┐
│  Herd Node A     │       │  Herd Node B     │
│  (agent + Ollama)│       │  (agent + Ollama)│
│  ┌────────────┐  │       │  ┌────────────┐  │
│  │  Capacity  │  │       │  │  LAN Proxy  │  │
│  │  Learner   │  │       │  │  (auto TCP) │  │
│  └────────────┘  │       └──└────────────┘──┘
└──────────────────┘

Two CLI entry points, one Python package:

  • herd — FastAPI server with scoring, queues, streaming proxy, trace store, health engine, and dashboard
  • herd-node — lightweight agent that collects system metrics, sends heartbeats, and optionally learns capacity patterns

Documentation

DocumentDescription
API ReferenceAll endpoints with request/response schemas
Configuration ReferenceAll 47+ environment variables with tuning guidance
Operations GuideLogging, traces, fallbacks, retry, drain, streaming, context protection
Routing EngineScoring pipeline deep dive
Adaptive CapacityCapacity learner, meeting detection, app fingerprinting
Request TaggingPer-app analytics and tagging strategies
Thinking ModelsChain-of-thought models, budget inflation, diagnostic headers
Image Generationmflux, DiffusionKit, Ollama native setup
TroubleshootingCommon issues, LAN debugging, operational gotchas
ChangelogWhat's new in each release

Optimize Ollama for Your Hardware

Ollama's defaults are conservative. On machines with lots of memory, set these to actually use the hardware you paid for:

SettingDefaultRecommendedWhy
OLLAMA_KEEP_ALIVE5m-1 (forever)Don't unload models from memory when you have RAM to spare
OLLAMA_MAX_LOADED_MODELSauto-1 (unlimited)Let multiple models stay hot simultaneously
OLLAMA_NUM_PARALLELauto2-4Prevents KV cache bloat on high-memory machines

Set via launchctl setenv (macOS), systemctl edit ollama (Linux), or system environment variables (Windows). See Configuration Reference for details.

Development

git clone https://github.com/geeks-accelerator/ollama-herd.git
cd ollama-herd
uv sync                              # install deps
uv run herd                          # start router
uv run herd-node                     # start node agent

uv sync --extra dev                  # install test deps
uv run pytest                        # run all tests (~5s)
uv run ruff check src/               # lint
uv run ruff format src/              # format

Contributing

Whether you're carbon-based or silicon-based, contributions are welcome. This project is built by humans and AI agents working together.

For humans: Fork it, run the tests (uv run pytest), make your change, open a PR. Start with CONTRIBUTING.md for guidelines and Architecture Decisions for context.

For AI agents: Read CLAUDE.md first — it's your onboarding doc. The project uses docs/issues.md for bug tracking and docs/observations.md for operational learnings.

Good first contributions:

Questions? Open a Discussion.

If Ollama Herd is useful to you, star the repo — it helps others discover the project and keeps the herd growing.

Anonymous usage stats

Ollama Herd sends one anonymous summary a day: which models ran, request and token counts, latency percentiles, and error counts by category. It helps decide what to fix and which models to test against.

Never sent: prompts, completions, raw error text, file paths, your hostname, or any account details — there are no accounts. Identity is a random UUID stored at ~/.fleet-manager/install_id; delete it and you are a new install.

Turn it off any time:

FLEET_NODE_TELEMETRY=false

Every field that can be sent is listed at https://ollamaherd.com/telemetry. Naming your herd for the public leaderboard is a separate opt-in — left alone, your install is a number in a total, with nothing identifying it.

Requirements

  • Python 3.11+
  • Ollama running on each device
  • Multi-device setups work automatically — the node agent starts a LAN proxy if Ollama is only listening on localhost

License

MIT