A local inference engine for Apple silicon, built around the model.
See the codeA local inference engine for Apple silicon, built around the model.
Splash serves a small set of models to coding agents and to any OpenAI or Anthropic compatible client, on one Mac. On a 48 GB M5 Pro it decodes Qwen3.8-27B at 2× the speed of the next-fastest engine and, with a 32K context cached, returns the first token in 282 ms. Its kernels, draft model, and memory plan are specialized for each model it serves. That is why it is fast, and why there is nothing to configure.
Apple M3 or newer, macOS 26.4 or later, Homebrew, and 36 GB of unified memory (48 GB or more recommended).
brew install incoai/tap/splash
splash serve --model incoai/Qwen3.8-27B-Splash
The first run downloads and verifies the model package, checks available
memory, and starts serving on 127.0.0.1:8000.
Once it prints Ready, leave this terminal open. Open http://127.0.0.1:8000
in your browser, or run an installed coding agent from another terminal:
splash opencode # or: splash claude / splash codex / splash hermes
Press Ctrl+C in the server terminal to stop Splash.
Splash speaks OpenAI Chat Completions (/v1/chat/completions), OpenAI Responses
(/v1/responses), and Anthropic Messages (/v1/messages), all with streaming,
tool calls, JSON Schema output, images, and inline PDFs. /tokenize and
/apply-template return token IDs and the rendered prompt without running the
model.
curl http://127.0.0.1:8000/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{
"model": "incoai/Qwen3.8-27B-Splash",
"messages": [{"role": "user", "content": "Explain speculative decoding in one sentence."}]
}'
model is optional. If set, use the served package ID or a configured
model alias.
Reasoning follows the model default unless a server default
is configured. "reasoning_effort": "none" turns it off, and
Qwen3.8-27B also takes low, medium, and xhigh.
/v1/judgments and /v1/systemone provide scoring without generation.
See judgment contracts for details.
Package (--model) | Contents | Download |
|---|---|---|
incoai/Qwen3.8-27B-Splash | Qwen3.8-27B, 4-bit, with its DFlash 2 draft | 17.4 GB |
incoai/Qwen3.6-35B-A3B-Splash | Qwen3.6-35B-A3B, 4-bit, with its DFlash 2 draft | 20.9 GB |
--model takes any owner/repo that holds a Splash package, a format
DEVELOPMENT.md describes. Plain MLX or
Transformers checkpoints do not work. Private repositories need HF_TOKEN.
Packages download into the Hugging Face cache, and brew upgrade splash keeps
them, along with model links and agent sessions.
For LM Studio Bionic, follow its Splash setup guide: install the Splash runtime, then paste the full Hugging Face model link into its model search. These integrations manage their own runtime and settings.
If a client’s model catalog does not list a package, the full repository ID in
this table still works with splash serve --model OWNER/REPO. The browser chat
and the agent launchers connect to that server without a catalog search.
For a custom model download location, see model cache.
There is no config file. The server binds 127.0.0.1:8000 by default.
Context supports up to the model’s native 256K window; usable capacity
depends on available memory. splash serve --help lists server options and examples.
The startup summary and maximum_context_tokens in /status show the effective
server limit. /v1/models and /v1/models/{id} report the same limit as
max_model_len and its compatibility alias context_length, including model aliases.
Clients can impose a smaller limit. With enough memory,
request the full window using --max-context 256K. This is a capacity limit, not a guarantee
that a long uncached prompt will reach its first token quickly.
splash serve accepts these optional flags:
--host: HTTP bind address. Default: 127.0.0.1.--port: HTTP port. Defaults to SPLASH_PORT or 8000.--max-memory: ceiling on Metal allocations, e.g. 28G. Default: auto.--max-context: context limit, up to 256K, e.g. 100K. Default: auto.--kv-format: target KV cache storage, int8 (default) or bf16.--max-image-pixels: maximum resized pixels per image. Default: 4,194,304.--allowed-host: extra HTTP Host name to accept, not a bind address. Repeatable.--api-key: require this key on API requests, as a bearer token or
x-api-key. Defaults to SPLASH_API_KEY.--no-webui: turn off the chat page.To use BF16 target KV, select it when starting the server:
splash serve --model incoai/Qwen3.8-27B-Splash --kv-format bf16
BF16 avoids target KV quantization, uses approximately twice the target KV
memory, and can be slower at long contexts. Model weights are unchanged.
Restart the server to switch formats. Omit --kv-format or use
--kv-format int8 for the default INT8 cache.
If the model does not fit in the memory available, startup prints a memory budget breakdown and stops.
Authentication is off by default. Set SPLASH_API_KEY in the shell that runs
splash serve and in the shell that runs an agent, and both sides use it.
Health and readiness probes stay public.
For LAN access and multiple servers, see server configuration.
Experimental cache offloading: PR #3.
Measured on an M5 Pro (16-core GPU, 48 GB): selected SPEED-Bench coding prompts over HTTP, a 1,024-token output limit, reasoning on (medium for the 27B). The ratio in each cell is against the next-fastest engine we measured.
| Metric | Qwen3.6-35B-A3B | Qwen3.8-27B |
|---|---|---|
| Decode · short prompt | 210 tok/s (1.7×) | 74 tok/s (2.0×) |
| Prefill · 32K prompt | 2,011 tok/s (1.3×) | 363 tok/s (1.2×) |
| Cached time to first token · 32K replay | 123 ms (6.6×) | 282 ms (7.3×) |
| Aggregate decode · 4 concurrent short prompts | 357 tok/s (2.0×) | 170 tok/s (3.9×) |
Splash led on every measure at every prompt length we tested, and the lead grows with load: 3.8× at four concurrent 32K requests on the 35B. The launch post has the method and the full comparison against oMLX, Lily, uzu, and Ollama.
For repeatable measurements on your Mac, see local benchmarks.
The runtime, scheduler, cache, and API are shared. Everything else is rebuilt per model:
The launch post covers the design in depth.
Python
35.9%
C++
32.6%
Objective-C++
23.7%
Metal
5.5%
Makefile
1.1%
A local inference engine for Apple silicon, built around the model.
See the codeA local inference engine for Apple silicon, built around the model.
Splash serves a small set of models to coding agents and to any OpenAI or Anthropic compatible client, on one Mac. On a 48 GB M5 Pro it decodes Qwen3.8-27B at 2× the speed of the next-fastest engine and, with a 32K context cached, returns the first token in 282 ms. Its kernels, draft model, and memory plan are specialized for each model it serves. That is why it is fast, and why there is nothing to configure.
Apple M3 or newer, macOS 26.4 or later, Homebrew, and 36 GB of unified memory (48 GB or more recommended).
brew install incoai/tap/splash
splash serve --model incoai/Qwen3.8-27B-Splash
The first run downloads and verifies the model package, checks available
memory, and starts serving on 127.0.0.1:8000.
Once it prints Ready, leave this terminal open. Open http://127.0.0.1:8000
in your browser, or run an installed coding agent from another terminal:
splash opencode # or: splash claude / splash codex / splash hermes
Press Ctrl+C in the server terminal to stop Splash.
Splash speaks OpenAI Chat Completions (/v1/chat/completions), OpenAI Responses
(/v1/responses), and Anthropic Messages (/v1/messages), all with streaming,
tool calls, JSON Schema output, images, and inline PDFs. /tokenize and
/apply-template return token IDs and the rendered prompt without running the
model.
curl http://127.0.0.1:8000/v1/chat/completions \
-H 'Content-Type: application/json' \
-d '{
"model": "incoai/Qwen3.8-27B-Splash",
"messages": [{"role": "user", "content": "Explain speculative decoding in one sentence."}]
}'
model is optional. If set, use the served package ID or a configured
model alias.
Reasoning follows the model default unless a server default
is configured. "reasoning_effort": "none" turns it off, and
Qwen3.8-27B also takes low, medium, and xhigh.
/v1/judgments and /v1/systemone provide scoring without generation.
See judgment contracts for details.
Package (--model) | Contents | Download |
|---|---|---|
incoai/Qwen3.8-27B-Splash | Qwen3.8-27B, 4-bit, with its DFlash 2 draft | 17.4 GB |
incoai/Qwen3.6-35B-A3B-Splash | Qwen3.6-35B-A3B, 4-bit, with its DFlash 2 draft | 20.9 GB |
--model takes any owner/repo that holds a Splash package, a format
DEVELOPMENT.md describes. Plain MLX or
Transformers checkpoints do not work. Private repositories need HF_TOKEN.
Packages download into the Hugging Face cache, and brew upgrade splash keeps
them, along with model links and agent sessions.
For LM Studio Bionic, follow its Splash setup guide: install the Splash runtime, then paste the full Hugging Face model link into its model search. These integrations manage their own runtime and settings.
If a client’s model catalog does not list a package, the full repository ID in
this table still works with splash serve --model OWNER/REPO. The browser chat
and the agent launchers connect to that server without a catalog search.
For a custom model download location, see model cache.
There is no config file. The server binds 127.0.0.1:8000 by default.
Context supports up to the model’s native 256K window; usable capacity
depends on available memory. splash serve --help lists server options and examples.
The startup summary and maximum_context_tokens in /status show the effective
server limit. /v1/models and /v1/models/{id} report the same limit as
max_model_len and its compatibility alias context_length, including model aliases.
Clients can impose a smaller limit. With enough memory,
request the full window using --max-context 256K. This is a capacity limit, not a guarantee
that a long uncached prompt will reach its first token quickly.
splash serve accepts these optional flags:
--host: HTTP bind address. Default: 127.0.0.1.--port: HTTP port. Defaults to SPLASH_PORT or 8000.--max-memory: ceiling on Metal allocations, e.g. 28G. Default: auto.--max-context: context limit, up to 256K, e.g. 100K. Default: auto.--kv-format: target KV cache storage, int8 (default) or bf16.--max-image-pixels: maximum resized pixels per image. Default: 4,194,304.--allowed-host: extra HTTP Host name to accept, not a bind address. Repeatable.--api-key: require this key on API requests, as a bearer token or
x-api-key. Defaults to SPLASH_API_KEY.--no-webui: turn off the chat page.To use BF16 target KV, select it when starting the server:
splash serve --model incoai/Qwen3.8-27B-Splash --kv-format bf16
BF16 avoids target KV quantization, uses approximately twice the target KV
memory, and can be slower at long contexts. Model weights are unchanged.
Restart the server to switch formats. Omit --kv-format or use
--kv-format int8 for the default INT8 cache.
If the model does not fit in the memory available, startup prints a memory budget breakdown and stops.
Authentication is off by default. Set SPLASH_API_KEY in the shell that runs
splash serve and in the shell that runs an agent, and both sides use it.
Health and readiness probes stay public.
For LAN access and multiple servers, see server configuration.
Experimental cache offloading: PR #3.
Measured on an M5 Pro (16-core GPU, 48 GB): selected SPEED-Bench coding prompts over HTTP, a 1,024-token output limit, reasoning on (medium for the 27B). The ratio in each cell is against the next-fastest engine we measured.
| Metric | Qwen3.6-35B-A3B | Qwen3.8-27B |
|---|---|---|
| Decode · short prompt | 210 tok/s (1.7×) | 74 tok/s (2.0×) |
| Prefill · 32K prompt | 2,011 tok/s (1.3×) | 363 tok/s (1.2×) |
| Cached time to first token · 32K replay | 123 ms (6.6×) | 282 ms (7.3×) |
| Aggregate decode · 4 concurrent short prompts | 357 tok/s (2.0×) | 170 tok/s (3.9×) |
Splash led on every measure at every prompt length we tested, and the lead grows with load: 3.8× at four concurrent 32K requests on the 35B. The launch post has the method and the full comparison against oMLX, Lily, uzu, and Ollama.
For repeatable measurements on your Mac, see local benchmarks.
The runtime, scheduler, cache, and API are shared. Everything else is rebuilt per model:
The launch post covers the design in depth.
Python
35.9%
C++
32.6%
Objective-C++
23.7%
Metal
5.5%
Makefile
1.1%