# Darkbloom - 在闲置的 Mac 上进行私有推理

- 来源：Hacker News 热门（buzzing.cc 中文翻译）
- 作者：twapi
- 发布时间：2026-04-16 14:32
- AIHOT 链接：https://aihot.virxact.com/items/cmo13yzje00d8slzfnofkd8lh
- 原文链接：https://darkbloom.dev/

## AI 摘要

Darkbloom 发布了一款工具，支持在闲置 Mac 电脑上执行私有 AI 推理，利用本地空闲算力完成机器学习计算，避免数据上传云端。该项目主打隐私保护，所有推理均在设备本地运行。该消息在 Hacker News 上获得 113 个点赞，详情见 darkbloom.dev。

## 正文

Cost-efficient private AI inference

Darkbloom routes encrypted requests to hardware-verified Apple Silicon providers, delivering comparable model performance at about 50% lower cost than typical API providers. Prompts stay hidden from operators, and Mac owners earn from compute they already own.

Private inference without a new SDK

Change the base URL and keep your existing OpenAI client. Requests are encrypted before they leave your app and routed to verified Apple Silicon providers.

Turn idle Apple Silicon into earnings

Run a provider on hardware you already own. Darkbloom matches your Mac with inference demand, and operators keep 100% of inference revenue during the public alpha.

Operator-blind by design

Darkbloom removes the practical software paths an operator could use to observe inference data. Four layers work together, each independently verifiable.

Encrypted end-to-end

Requests are encrypted before transmission. The coordinator routes ciphertext, and only the matched provider's hardware-bound key can decrypt the request.

Hardware-verified

Each provider uses a key generated inside Apple's tamper-resistant secure hardware. The attestation chain traces back to Apple's root certificate authority.

Hardened runtime

The inference process is locked down at the OS level. Debugger attachment and memory inspection are blocked so the operator cannot inspect a running request.

Traceable to hardware

Responses are signed by the specific machine that produced them. The attestation chain is public, so users can verify the hardware behind the result.

The operator contributes compute, not visibility.

Your prompt is encrypted before it leaves your app. The coordinator routes traffic it cannot read. The provider serves the request inside a hardened process the operator cannot inspect.

OpenAI-compatible API

Keep your SDK, request shape, and streaming code. Point the client at Darkbloom and start routing private inference.

from openai import OpenAI client = OpenAI( base_url="https://api.darkbloom.dev/v1", api_key="your-api-key" ) response = client.chat.completions.create( model="gemma-4-26b", messages=[{"role": "user", "content": "Hello!"}], stream=True ) for chunk in response: print(chunk.choices[0].delta.content, end="")

from openai import OpenAI client = OpenAI( base_url="https://api.darkbloom.dev/v1", api_key="your-api-key" ) response = client.chat.completions.create( model="gemma-4-26b", messages=[{"role": "user", "content": "Hello!"}], stream=True ) for chunk in response: print(chunk.choices[0].delta.content, end="")

50% lower cost, comparable performance

Idle Apple Silicon keeps the cost structure simple. Pay per token with no subscription or minimum, with selected model prices set around 50% below typical API-provider rates for comparable models.

ModelInputOutputTypical APIvs typical API Gemma 4 26BMoE · 128K context$0.03$0.165$0.3350% lower GPT-OSS 20BMoE · 128K context$0.015$0.07$0.1450% lower

Prices per million tokens. Typical API means published list rates for comparable models from major API providers.

Earn from your Mac

Install the provider, choose when your Mac is available, and earn from inference jobs matched by the network. During the public alpha, operators keep 100% of inference revenue.

Downloads the provider binary and configures a background launchd service.

$ curl -fsSL https://api.darkbloom.dev/install.sh | bash

$ curl -fsSL https://api.darkbloom.dev/install.sh | bash

A guided setup flow for non-terminal users. The CLI is the supported path during the public alpha.

Earnings estimate

Select your hardware, model, active hours, and electricity cost to estimate provider earnings.

Auto-selected: most profitable for your hardware

US avg: $0.15 · EU avg: $0.25 · CA avg: $0.22

Serving — at 18 hrs/day

Monthly net earnings

$0

$0 / year

Estimates only. Actual earnings depend on demand, model popularity, provider reputation, uptime, and local electricity cost.

Read the technical paper

Architecture, threat model, security analysis, and economic model for private inference on distributed Apple Silicon.
