cd /news/artificial-intelligence/announcing-expo-support-for-nobodywh… · home topics artificial-intelligence article
[ARTICLE · art-116652] src=nobodywho.ai ↗ pub= topic=artificial-intelligence verified=true sentiment=↑ positive

Announcing Expo support for NobodyWho

NobodyWho, an open-source project providing a Rust core for on-device LLM inference via llama.cpp, announced support for Expo, enabling developers to run large language models entirely on users' phones without API keys or servers. The new react-native-nobodywho package offers features including streaming text generation, tool calling, multimodal input, text-to-speech, speech-to-text, and embeddings, with an Expo starter example available on GitHub.

read3 min views7 publishedAug 27, 2026
Announcing Expo support for NobodyWho
Image: Nobodywho (auto-discovered)

NobodyWho now works with Expo. You can add react-native-nobodywho

to an Expo project and ship an LLM that runs entirely on your users' phones. No API keys, no servers to babysit, no per-token bill at the end of the month, just a .gguf

model to download.

To help you get up and running quickly, we've also published a full Expo starter example that wires up every feature in an Expo app you can run within minutes. You can also have a look to the docs or give your agent everything it needs with npx skills add https://github.com/nobodywho-ooo/nobodywho --skill nobodywho

.

Why on-device? #

Most AI features in mobile apps today route every processing request through a hosted API. Running the model directly on the user's device is a different shape of product, and it brings several benefits:

Privacy by design- user data never leaves the device** Works offline**- no internet connection required** Low latency**- no network round trip on every interaction** No cloud costs**- inference is free, no per-token billing

The tradeoff is raw capability: local models are smaller than frontier cloud models, but for chat, summarization, classification, transcription, and many agentic workflows they're more than enough. And on modern phones, GPU-accelerated inference (Metal on iOS, Vulkan on Android) makes them fast.

What you get #

You get the same core API as our other bindings:

Text generation- streaming, token-by-token chat with full conversation memory** Use any**- Gemma, Qwen, Mistral, LFM, Granite, and thousands more.gguf

modelTool calling- type-safe function calling that generates structured grammars directly from your TypeScript function signatures** Multimodal input**- feed images and audio straight to a vision or audio-capable model** Text-to-speech (TTS)- synthesize natural-sounding WAV audio locally with Kokoro, Pocket-tts, and Supertonic backends Speech-to-text (STT)- transcribe audio into text with Whisper models Voice activity detection (VAD)- reliably detect speech from silence with Silero VAD Embeddings & RAG**- an embedding encoder plus a cross-encoder reranker for semantic search** Model down**- load models directly from Hugging Face (hf://…

) or any URL, on demand

Under the hood you also get conversation-aware preemptive context shifting, so you keep full conversation memory without hard message-length limits. It works on both iOS and Android.

Getting started #

Install the package in your Expo project:

npx expo install react-native-nobodywho

A minimal streaming chat looks like this:

import { Chat } from "react-native-nobodywho";

const chat = await Chat.fromPath({
  modelPath: "/path/to/model.gguf",
  useGpu: true,
});

for await (const token of chat.ask("Is water wet?")) {
  console.log(token);
}

Then run the app with npx expo run:ios

or npx expo run:android

.

One core, many languages #

Expo joins a growing list of NobodyWho targets. The same Rust core wrapping llama.cpp now powers bindings across:

Godot- drop-in nodes for game dialogue, NPCs, and tooling** Python**- for scripting, prototyping, and ML workflows** Swift**- native iOS, macOS, watchOS, and visionOS apps** Kotlin**- native Android and cross-platform JVM desktop apps** Flutter**- cross-platform mobile and desktop apps** React Native / Expo**- the JavaScript/TypeScript mobile ecosystem

That's the whole point of NobodyWho: one well-maintained inference core, with bindings for whichever language or framework you need. Every binding gets the same feature set, so you don't have to give up capabilities to use the tools you prefer.

Join the community #

We'd love to hear what you build with NobodyWho on Expo! Come and meet the people building with NobodyWho and get help:

  • open an issue if you hit a bug, or a discussion if you have an idea.GitHub- the best place to ask questions, share what you're working on, and chat with the team and other NobodyWho users.Discord

Happy hacking!

Everything NobodyWho do is open-source, please leave a star on Github to support us ❤️

Published Aug 27, 2026

── more in #artificial-intelligence 4 stories · sorted by recency
── more on @nobodywho 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/announcing-expo-supp…] indexed:0 read:3min 2026-08-27 ·