Apple Watch & Vision Pro apps

We are excited to announce the release of our first two apps! Both are personal AI assistants that run completely offline, powered by the NobodyWho inference engine.
Apple Watch
This is a standalone Apple Watch app, meaning it works without any iOS companion app. It's the world's first Apple Watch app that can run an AI model locally, completely offline! The idea was to create an app that could answer simple questions on the go, off the grid, in a single shot, which is why we didn't bother persisting conversations.
Since computing power is limited on the Apple Watch without Metal acceleration, we are restricted in the models we can run. Currently, we support models from Prism ML and Liquid AI, such as the LFM2.5 with 700 million parameters (Apple Watch Ultra) and the 1-bit Bonsai with 1.7 billion parameters (Apple Watch Series 11).
As smaller models get smarter over time, the door opens to better answers on the Apple Watch, and we are very excited for the new small language models to come!
Links:
Vision Pro
Following the path set by the Apple Watch app, we decided to build an app that can run large, capable, thinking models. Streamed answers render beautifully thanks to the LLMStream library. Models from Prism ML and Liquid AI are supported as well, along with Qwen3, a thinking model.
Links:
Who We Are
We're NobodyWho, a local inference library that enables running small models on edge devices for Swift and several other languages. We value open-source code, control over your models, solid software engineering, standardization, and making simple things simple.
All of which is missing in today's AI world. Running a model with us is as easy as:
import NobodyWho
let chat = try await Chat.fromPath(modelPath: "./model.gguf")
let response = try await chat.ask("What is the capital of Denmark?").completed();
// The capital of Denmark is Copenhagen.
If you value the same things, come and become a contributor or just download and test our library.
Published Jun 4, 2026