cd /news/artificial-intelligence/voice-commander-control-your-mac-wit… · home topics artificial-intelligence article
[ARTICLE · art-83453] src=dev.to ↗ pub= topic=artificial-intelligence verified=true sentiment=↑ positive

Voice Commander: Control Your Mac with Hey Jarvis

A developer at JPMorgan Chase built 45 AI tools that run locally on a MacBook using Ollama and open-source models like Llama 3.2, eliminating API costs and privacy concerns. The tools, available on GitHub, demonstrate how to run GPT-4-level models for free and privately.

read1 min views1 publishedAug 2, 2026

Every token costs money. Every API call adds up. And your data goes to their servers.

brew install ollama
ollama pull llama3.2
ollama serve

Now you have a GPT-4 level model running on your MacBook. Free. Private. Fast.

import requests

def ask_local_ai(question):
    r = requests.post(
        "http://localhost:11434/api/generate",
        json={"model": "llama3.2", "prompt": question, "stream": False}
    )
    return r.json()["response"]

answer = ask_local_ai("Explain Docker in one paragraph")
print(answer)
Model Size Best For
llama3.2 2GB General use
codellama 4GB Code tasks
mistral 4.4GB Fast reasoning
phi3 2.2GB Lightweight tasks
gemma2 5.4GB Complex reasoning

I built 45 tools using this stack. All free. All local. All open source.

github.com/amrendramishra/ai-tools

VP at JPMorgan Chase. Building AI tools at amrendranmishra.dev

── more in #artificial-intelligence 4 stories · sorted by recency
── more on @jpmorgan chase 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/voice-commander-cont…] indexed:0 read:1min 2026-08-02 ·