General Discussion
Related: Editorials & Other Articles, Issue Forums, Alliance Forums, Region ForumsMega Data Centers? NO. Your iPhone Is an OpenAI-Compatible LLM Server Now
This article touts an iphone app, free with ads, $1.99 without ads.
Ipads and some macs. (26 and M1 or newer)
I am posting it here not as a plug, but as a proof of concept, that mega data centers are a criminal waste of money, And just as you are using a home computer instead of a mainframe (do ya remember mainframes?) these monstrosities will serve only mega-companies and government surveillance and death goals.
https://www.kevin.md/iphone-openai-compatible-server.md/
Apple Intelligence ships a ~3B-parameter language model on every recent iPhone, running locally on the neural engine. Its genuinely capable for structured tasksclassification, extraction, summariesand it costs nothing per token. The catch: Apple exposes it as a Swift framework. If your tooling speaks HTTPPython scripts, LangChain, DSPy, a curl one-liner, literally the entire LLM ecosystemtheres no door in.
Local LLM Server is that door. Open the app, pick a port, hit Start Server, and the device serves at http://{your-lan-ip}:8080 with the two API shapes everything already understands: OpenAIs (/v1/chat/completions and friends) and Ollamas. Your OpenAI client library doesnt know its talking to a phone.

Fiendish Thingy
(24,826 posts)And can delete it if you want, right?
gab13by13
(33,222 posts)usonian
(27,561 posts)AZJonnie
(4,321 posts)can access the mini-LLM that's also running on your phone. It's not a bridge for the public to use your mini-LLM like a peer-to-peer network, as it sounds like you're thinking.
For example I develop with tools from an outfit called JetBrains on my PC. I can connect my Jetbrains tools to various LLM's to help with things like coding suggestions as I'm typing. One of those is Ollama, which I have running locally on my PC. Ollama exposes standard HTTP-based API's which let any of my local dev tools connect to it and be serviced by it.
The way the local LLM on the Apple phone works by default is more locked down, I wouldn't be able to connect my Jetbrains tools (if I had them on my phone) to a local instance of Apple's LLM, even though it's right there on the phone. This bridge they're talking about standardizes how the local Apple LLM can be connected to, such that my Jetbrains tools COULD connect to it and leverage it with things like code completion.
It's meant to be used for local connections, apps on your phone connecting to the LLM on your phone, using standard protocols. Not to turn your phone into mini-datacenter for the public to use.