Skip to content
Pocket Grove
Writing

Run a Private LLM at Home and Use It From Your Phone

29 August 2026 · 7 min read

Looking for an app to help with this? Try Ollama Connect.

Quick answer: To run a private LLM at home and use it from your phone, install Ollama on a Mac or PC, pull a model with ollama pull llama3.2, then start the server with OLLAMA_HOST=0.0.0.0:11434 ollama serve so it listens on your local network on port 11434. On the same Wi-Fi, connect with Ollama Connect on Android or iPhone using your computer's IP (for example http://192.168.1.42:11434). Your prompts travel only from your phone to your own machine, so nothing is logged on a third-party server and there are no per-token fees.

There is a growing appeal to running your own language model instead of renting one by the token. You control the hardware, you control the data, and once the machine is paid for, the marginal cost of a conversation is roughly the electricity to run it. The catch has always been convenience: a model living on a desktop is hard to use when you are away from the desk. This post covers how to run a private LLM at home and, crucially, how to actually use it from your phone.

Why run a model locally at all

Two reasons dominate: privacy and cost.

Privacy. When you type into a hosted chatbot, your prompt travels to someone else's servers. Depending on the provider and plan, that text may be logged, retained, or used to improve future models. For a lot of casual questions that is fine. For anything sensitive, personal, or proprietary, it is a real consideration. A model running on your own machine never sends your words anywhere you did not choose.

Cost. Per-token pricing is cheap until it is not. If you use AI heavily throughout the day, a subscription or API bill adds up every month, forever. A local model is a fixed, one-time hardware investment. If you already own a reasonably modern Mac or a PC with a decent GPU, the incremental cost is close to zero.

There is a third, quieter reason: independence. A local model does not change its behavior overnight because a provider updated a policy, does not go down when a service has an outage, and does not require an internet connection once the model is downloaded.

What you need

  • A computer that can run a model. A Mac with Apple Silicon (M1 or newer) is excellent for this thanks to unified memory. A PC with a modern GPU works well too. Even a machine with 8 GB of RAM can run small models; 16 GB or more opens up better ones.
  • Ollama, the free, open-source (MIT-licensed) tool that makes running local models genuinely easy.
  • Your phone, on the same home network, for remote access.

Step 1: Install Ollama and pull a model

Download Ollama for your platform, then pull a model from the terminal. Start small so you can confirm everything works before committing to a larger download:

ollama pull llama3.2
ollama run llama3.2 "Explain what you are in one sentence."

If a response streams back, you have a working private LLM. That is genuinely the hard part done. Start with a small local model from the official Ollama model library, then move up only if your hardware has the memory and the smaller model cannot handle your real prompts.

Step 2: Make the model reachable on your network

By default Ollama listens on 127.0.0.1:11434, so nothing but the machine itself can talk to it. To reach it from your phone, bind it to your whole local network by setting OLLAMA_HOST and restarting the server, as described in Ollama's network configuration guide:

OLLAMA_HOST=0.0.0.0:11434 ollama serve

It will listen on port 11434. Find your computer's local IP:

ipconfig getifaddr en0    # macOS
hostname -I               # Linux

You will get something like 192.168.1.42, giving you an endpoint of http://192.168.1.42:11434. Confirm it is reachable from another device on the network:

curl http://192.168.1.42:11434/api/tags

A JSON list of your models means you are in business. If it works on the computer but not from the phone, use the complete Ollama network setup guide to verify the binding, firewall, and second-device connection in order.

Step 3: Connect from your phone

Install Ollama Connect on Android or iPhone. It is a private client that talks directly to your own Ollama host, with no account and no analytics. You can either let it search the local network for your server automatically or enter the http://192.168.1.42:11434 endpoint by hand. Save the host, pick a model, and start chatting with fast streaming replies. Your conversations are stored locally on the phone, not in a cloud.

Because you can save multiple hosts, a single phone can reach your desktop, a dedicated home server, and any other Ollama machine you run, switching between them as needed.

The privacy math, honestly

Running locally is more private, but be precise about what that means. When you use Ollama Connect on your home Wi-Fi, your prompt goes from your phone to your own computer and the reply comes back. That traffic stays inside your network. Nothing is routed through a third-party server.

The honest caveats:

  • Reaching your model from outside the house means either exposing the port (which you should not do without authentication) or, better, running a VPN into your home network. Ollama's local API does not require authentication, so a VPN is the safer default for remote access.
  • A local model is only as good as the hardware. Very large frontier-class models will not fit on a laptop. What you can run at home are smaller, still very capable models, and for a huge share of everyday tasks they are more than enough.

Is it worth it?

If you value privacy, use AI a lot, or simply like owning your tools, running a model at home is one of the more satisfying setups you can build. The upfront effort is an afternoon; after that, you have a private assistant reachable from your pocket that costs nothing per message and answers to no one but you.

FAQ

What hardware do I need to run an LLM at home?

A Mac with Apple Silicon or a PC with a modern GPU works best, but any machine with 8 GB of RAM can run small models. More memory lets you run larger, more capable models. You do not need a server rack; a normal laptop or desktop is enough to start.

Is a home LLM as good as a big cloud service?

For everyday questions, drafting, summarizing, and coding help, a good small model running locally is very capable. Frontier-scale cloud models still lead on the hardest reasoning tasks, but most people find local models handle the bulk of what they actually do.

How do I keep the connection private when away from home?

Use a VPN into your home network rather than exposing Ollama's port to the internet. The port has no built-in authentication, so a VPN is the safe way to reach your model remotely while keeping traffic inside a trusted tunnel.

Does Ollama Connect store my chats anywhere?

Chats and settings are stored locally on your phone. Prompts go only to the Ollama host you select, and nothing is routed through the app maker's servers.

How much does this cost to run per month?

After the one-time hardware cost, the ongoing cost is essentially the electricity to run your computer while it generates responses. There are no per-token fees and no subscription.

The app behind this guide

Ollama Connect

See the features and screenshots, or open the App Store from this guide.

Related guides