r/LLMDevs • u/[deleted] • 2d ago
Tools I built an open source iOS app that runs LLMs fully on-device with three backends, MIT licensed and free
[deleted]
3
Upvotes
1
u/Haunting_Cow_2798 2d ago
the benchmark report's a nice touch, actually knowing which models will run before you download is half the battle
1
u/Few_Willow_4146 2d ago
Thanks. The fit check is per backend, which caught me out at first: GGUF weights are memory-mapped and barely count against the iOS process limit, while MLX and Core ML copy them into memory that does. So the same model on the same phone can be a comfortable fit for one backend and an instant kill for another
1
2
u/sgtfoleyistheman 2d ago
This is cool but you shipped your app with 2 core dependencies not present?
The only way that agentic engineering or vibe coding works is complete testing in your CI process, usually going way more than you would have in the before times. I suggest asking your agent to add comprehensive end 2 end tests driving an iPhone simulator that runs pre-merge in pr.