I’ve seen several projects like this that offer a network server with access to these Apple models. The danger is when they expose that, even on a loop port, to every other application on your system, including the browser. Random webpages are now shipping with JavaScript that will post to that port. Same-origin restrictions will stop data flow back to the webpage, but that doesn’t stop them from issuing commands to…
Show HN: Apfel – The free AI already on your Mac
51–60 of 180 posts
Re: Show HN: Apfel – The free AI already on your Mac
#52Does the local LLM have access to personal information from the Apple account associated with the logged-in user? Maybe through a RAG pipeline or similar? Just curious if there are any risks associated with exposing this in a way that could be exploited via CORS or through another rogue app querying it locally.
apple does have an on device rag pipeline called the semantic index that feeds personal data like contacts emails calendar and photos into the model context but this is only available to apples own first party features like siri and system summaries.
it is not exposed through the foundationmodels api.
Re: Show HN: Apfel – The free AI already on your Mac
#53Re: Show HN: Apfel – The free AI already on your Mac
#54Re: Show HN: Apfel – The free AI already on your Mac
#55Earlier quoted context omitted.
If you’re looking into small models for tiny local tasks, you should try Qwen coder 0,5B. It’s more of an experiment, but it can output decent functions given the right context instructions.
> [Qwen coder 0,5B] can output decent functions given the right context instructions Can you share a working example?
Re: Show HN: Apfel – The free AI already on your Mac
#56A serious project would do the work to be delivered via the native homebrew repository, not a “selfhosted” one.
Re: Show HN: Apfel – The free AI already on your Mac
#57Re: Show HN: Apfel – The free AI already on your Mac
#58It’s a nice LLM because it seems fairly decent and it loads instantly and uses the CPU neural engine. The GPU is faster but when I run bigger LLMs on the GPU the normally very cool M series Mac becomes a lap roaster.
It’s a small LLM though. Seems decent but it’s also been safety trained to a somewhat comical degree. It will balk over safety at requests that are in fact quite banal.
Re: Show HN: Apfel – The free AI already on your Mac
#59Now this is a development I like. With the Claude bug, or so it is known, burning through tokens at record speed, I gave alternative models a try and they're mostly ... interchangeable. I don't know how easy switching and low brand loyalty and fast markets will play out. I hope that local LLMs will become very viable very soon.
Re: Show HN: Apfel – The free AI already on your Mac
#60Does the local LLM have access to personal information from the Apple account associated with the logged-in user? Maybe through a RAG pipeline or similar? Just curious if there are any risks associated with exposing this in a way that could be exploited via CORS or through another rogue app querying it locally.
no. the on device foundationmodels framework that apfel uses does not have access to personal information from the apple account. the model is a bare language model with no built in personal data access. apple does have an on device rag pipeline called the semantic index that feeds personal data like contacts emails calendar and photos into the model context but this is only available to apples own first party featur…