★ Reading this for free? Get 20 structured AI courses + per-chapter AI tutor — the first chapter of every course free, no card.Start free in 30 seconds
Ollama

Ollama Agent Mode Explained: What Typing ollama Does Now (v0.32)

July 20, 2026
9 min read
LocalAimaster Research Team

Want to go deeper than this article?

Free account unlocks the first chapter of all 22 courses — RAG, agents, MCP, voice AI, MLOps, real GitHub repos.

📚AI Learning Path

Ollama’s running. Here’s what to build with it. Go from “ollama run” to RAG apps, agents, and fine-tuned models — structured and hands-on. First chapter free.

Start free
Or own it for life — Lifetime $149, pay once

Since Ollama v0.32.0 (July 11, 2026), typing the bare ollama command launches an interactive agent. Per the release notes, it lets you "chat with models, code, search the web, and delegate real work." The notes list no changes to ollama run or other model-running subcommands — every other invocation change in v0.32.0 is inside ollama launch (Codex→ChatGPT rename, simplified menu, deprecation warnings), covered below.

That's the short version. Ollama agent mode is the biggest change to the tool's front door since launch, and it landed two days after Ollama announced an $88M funding round. This page covers what the agent does per the official release notes, how your old workflows hold up, the Apple Silicon speedups that shipped alongside it, and the one privacy question worth asking before you hit enter.


What Typing ollama Does Now {#what-happens}

Update to v0.32.0 or later, type ollama with no arguments, and you get this (straight from the release notes):

❯ ollama
Ollama 0.32.0

▸ Chat, Code, & Work (glm-5.2:cloud)
    Chat with models, code, search the web, and delegate real work

The release notes describe it as "an agent to help you code and delegate work." In other words: the command that used to be a plain model runner now opens a session that behaves like a coding assistant — it can hold a conversation, write code, reach out to the web, and take on multi-step tasks.

Two details in that banner matter:

  1. glm-5.2:cloud — the default shown is a :cloud model. The out-of-the-box agent points at cloud inference, not a model on your disk. More on that in the privacy section.
  2. "search the web" — a live-web capability inside a tool most people installed specifically to keep things local. As of v0.32.1, using it prompts you to run ollama signin.

If you're new to Ollama entirely, start with our complete Ollama guide — this page assumes you already have it installed.


Reading articles is good. Building is better.

Free account = 20+ free chapters across 22 courses, with a per-chapter AI tutor. No card. Cancel anytime if you ever upgrade.

What Agent Mode Can Do {#what-agent-mode-does}

The release notes keep the description tight, so we will too. Per v0.32.0 and the v0.32.1 follow-up, the agent can:

CapabilityWhat the release notes say
Chat"Chat with models" — conversational sessions from the banner
Code"an agent to help you code" — coding assistance is the headline use
Web search + fetchBuilt in; as of v0.32.1, both "tell users to run ollama signin"
Delegate work"delegate real work" — multi-step task handling
Directory awarenessv0.32.1: "the interactive agent now receives the current working directory" — so it knows where you're standing, which is table stakes for a coding agent

The notes don't document flags, config options, or how to point the agent at a different model, so we're not going to invent any. When Ollama publishes those details, we'll update this page.

What we can tell you: agent-style work is brutal on weak models. Tool calling, multi-turn reasoning, and long contexts separate the models that can actually do this from the ones that just chat. If you want to run agent workloads against local models, see best Ollama models for agents — and note that v0.32.1 specifically "improved Gemma 4 tool calling and multi-turn reasoning," which tells you which model family Ollama itself is polishing for this. For wiring Ollama into external tools the standards-based way, there's our Ollama MCP integration guide.


Keeping Your Old Workflow {#old-workflow}

Here's the part most people searching "ollama new version agent" actually want to know: did my scripts break?

Based on the v0.32.0 release notes: your model-running workflows didn't. The notes list no changes to ollama run or other model-running subcommands — ollama run isn't mentioned at all, and no removal or breaking change to it is listed. The invocation changes in v0.32.0 sit in two places: the bare ollama command (now the agent) and ollama launch (the three changes below). So a script that calls ollama run is untouched; a script that called ollama launch codex needs updating.

Three adjacent changes worth knowing:

  • Deprecation warnings on old models. ollama launch now warns before launching CodeLlama, Qwen2.5(-coder), Llama 3.x, Mistral, StarCoder, and base DeepSeek-R1 tags. It's a warning, not a block — but it's Ollama telling you those models are on the way out for agent use. If you're on one of them, our current model rankings will show you what to move to.
  • Codex is now ChatGPT. The Codex App integration was renamed: it's ollama launch chatgpt now, with a --restore flag to return to your usual ChatGPT profile.
  • Simplified launch menu. The ollama launch menu now only offers the most popular integrations.

If something does behave oddly after upgrading, the Ollama troubleshooting guide covers the usual failure modes.


The Web Search and Privacy Question {#privacy}

Ollama's entire pitch has been local-first. Agent mode complicates that in two documented ways, so let's be precise about what's confirmed and what's open.

Confirmed by the release notes:

  • The agent's default banner shows glm-5.2:cloud — a cloud model, meaning default agent inference isn't happening on your machine.
  • As of v0.32.1, "agent web search and fetch now tell users to run ollama signin" — search and fetch are tied to an Ollama account.
  • The interactive agent "receives the current working directory."

Not documented (open questions): what gets logged when you search, how long it's retained, and how you point the agent at a purely local model. The release notes don't say, and we won't pretend they do.

The fair read: web search has to leave your machine — there's no local copy of the live web. The signin requirement is how Ollama gates it. None of this changes ollama run with local weights, which stays as local as it ever was. But if your reason for using Ollama is "nothing leaves this box," know that the agent's defaults, as shipped, don't match that posture — you'll want to check its configuration before using it for anything sensitive.


Reading articles is good. Building is better.

Free account = 20+ free chapters across 22 courses, with a per-chapter AI tutor. No card. Cancel anytime if you ever upgrade.

Apple Silicon: The MLX Speedups {#apple-silicon}

Agent mode is the headline, but the performance story underneath it is arguably worth the upgrade on its own if you're on a Mac.

  • June 11, 2026: Ollama announced a new MLX engine for Apple Silicon — in its words, "Ollama's highest performance on Apple Silicon yet with MLX."
  • June 30 (v0.31.1): Gemma 4 got multi-token prediction, making it "nearly 90% faster on average" on Apple Silicon. Ollama's June 29 blog post pitched it as "up to 90% faster" specifically with coding agents — which is not a coincidence given what shipped twelve days later.
  • July 16 (v0.32.1): fixed MLX model cache leaks and made MLX text model loading respect OLLAMA_LOAD_TIMEOUT.

The pattern is deliberate: make local models fast enough on Macs that agent workloads — which burn far more tokens than one-shot chat — feel usable. A near-doubling of Gemma 4 throughput on Apple Silicon is exactly the kind of gain agents need.

Windows/Linux users didn't get nothing: v0.31.2 (July 6) enabled flash attention on older NVIDIA GPUs (compute capability 6.x) and improved iGPU offloading for vision models.


Version-by-Version Changelog {#changelog}

The last six weeks, compressed:

VersionDateWhat changed
v0.32.1Jul 16, 2026Better Gemma 4 tool calling + multi-turn reasoning; MLX cache-leak fix; MLX loading respects OLLAMA_LOAD_TIMEOUT; web search/fetch prompt ollama signin; agent receives working directory
v0.32.0Jul 11, 2026Bare ollama launches the agent; Codex integration renamed to ChatGPT (ollama launch chatgpt); simplified launch menu; deprecation warnings for older models
v0.31.2Jul 6, 2026Flash attention on older NVIDIA GPUs (compute 6.x); iGPU vision-model offloading; Claude Code launch disables telemetry by default
v0.31.1Jun 30, 2026Gemma 4 nearly 90% faster on average on Apple Silicon via multi-token prediction
v0.30early Jun 2026Expanded GGUF model compatibility via llama.cpp integration

For the longer arc — every release back through the early versions — see our Ollama version history.


What the $88M Raise Signals {#funding}

On July 9, 2026 — two days before agent mode shipped — Ollama announced $88M in funding from Benchmark, Theory Ventures, 8VC, Y Combinator, and angel investors. The company says it serves 8.9 million developers. The announcement's title: "Ollama: all aboard open models."

Read the sequence and the strategy is legible:

  1. Jun 11: MLX engine — make local inference fast on the hardware most developers carry.
  2. Jun 30: 90% Gemma 4 speedup — make a specific model family agent-viable.
  3. Jul 9: $88M raise announced.
  4. Jul 11: the bare command becomes an agent, defaulting to a :cloud model, with signin-gated web search.

That's a model runner becoming an agent platform, with the account system (ollama signin) and :cloud tier as the obvious monetization surface. A free local runner doesn't need 8.9 million developers to sign in; a funded agent platform does. The blog title signals open models stay central — and nothing in the release notes walks back local inference — but the growth story investors funded is clearly the agent, not the runner.


Verdict {#verdict}

Agent mode is a bigger strategic shift than a practical one — for now. Practically: your subcommand-based workflows are untouched by anything in the v0.32.0 notes, Macs got a genuinely large speed bump, and the new default only bites if you type bare ollama expecting the old behavior.

Strategically, the ground moved. The default experience of the most popular local-model tool now points at a cloud model and includes account-gated web search. That's not a scandal — it's disclosed in the release notes — but it means "I use Ollama" and "everything runs locally" are no longer automatically the same sentence. Know which mode you're in.

Our recommendation: take the upgrade (the MLX and flash-attention gains are real), keep driving explicit subcommands for anything sensitive, and try the agent with eyes open about the :cloud default. If you're picking models for agent work, start with our agent-model rankings.


Sources {#sources}

  • Ollama GitHub Releases — official release notes for v0.30 through v0.32.1 (all version claims above)
  • Ollama Blog — MLX engine announcement (Jun 11), Gemma 4 speedup post (Jun 29), and the $88M funding announcement (Jul 9)

FAQ {#faq}

🎯
AI Learning Path

Ollama’s running. Here’s what to build with it.

Go from “ollama run” to RAG apps, agents, and fine-tuned models — structured and hands-on. First chapter free.

Or own it for life — Lifetime $149 $599, pay once

Liked this? 20 full AI courses are waiting.

From fundamentals to RAG, agents, MCP servers, voice AI, and production deployment with real GitHub repos. First chapter free, every course.

Reading now
Join the discussion

LocalAimaster Research Team

Creator of Local AI Master. I've built datasets with over 77,000 examples and trained AI models from scratch. Now I help people achieve AI independence through local AI mastery.

Build Real AI on Your Machine

RAG, agents, NLP, vision, and MLOps - chapters across 22 courses that take you from reading about AI to building AI.

Want structured AI education?

22 courses, 519+ chapters, from $9. Understand AI, don't just use it.

AI Learning Path
More on Ollama
See the full Best Ollama Models 2026 guide.

Comments (0)

No comments yet. Be the first to share your thoughts!

What is Ollama agent mode?

Agent mode is the new default behavior of the bare ollama command, introduced in v0.32.0 on July 11, 2026. Instead of the old CLI behavior, typing ollama now launches an interactive agent. The release notes describe it as an agent "to help you code and delegate work," and the startup banner lists its abilities as: chat with models, code, search the web, and delegate real work.

Why does typing ollama start an agent now?

Because Ollama is repositioning from a model runner into an agent platform. The v0.32.0 release (July 11, 2026) made the agent the front door of the product, and two days earlier (July 9) Ollama announced an $88M funding round from Benchmark, Theory Ventures, 8VC, Y Combinator, and angels, citing 8.9 million developers served. The agent-first default is the product direction that raise is funding.

How do I get the old Ollama CLI behavior back?

Call subcommands explicitly — ollama run <model> behaves as before; the v0.32.0 release notes list no change or removal to it. The invocation changes in v0.32.0 are the bare ollama command (now the agent) and a set of ollama launch changes: the Codex integration renamed to ChatGPT, a simplified menu, and deprecation warnings before launching older models like CodeLlama, Qwen2.5(-coder), Llama 3.x, Mistral, StarCoder, and base DeepSeek-R1 tags. So a script calling ollama run is unaffected; one that called ollama launch codex needs updating.

Does Ollama agent mode use cloud models or local ones?

The startup banner shown in the v0.32.0 release notes lists the agent's default as "Chat, Code, & Work (glm-5.2:cloud)" — a :cloud model, meaning the out-of-the-box agent experience points at cloud inference, not a model on your machine. The release notes don't document how to swap the agent to a local model, so we won't guess at the mechanics here — but the :cloud suffix in the default is worth knowing before you assume everything stays on-device.

Is the agent's web search private?

Web search inherently leaves your machine — there's no local way to search the live web. As of v0.32.1 (July 16, 2026), the release notes say agent web search and fetch now tell users to run ollama signin, which means those features are tied to an Ollama account. The notes also say the interactive agent now receives your current working directory. Ollama hasn't published (in these release notes) what is logged or retained, so treat search and fetch as account-linked cloud features inside an otherwise local-first tool.

What is new in Ollama 0.32.1?

v0.32.1 shipped July 16, 2026 with: improved Gemma 4 tool calling and multi-turn reasoning, a fix for MLX model cache leaks, MLX text model loading now respecting OLLAMA_LOAD_TIMEOUT, the agent's web search and fetch prompting users to run ollama signin, the interactive agent receiving the current working directory, and a fix to the ollama launch model picker for deprecated models.

Why is Ollama so much faster on Apple Silicon now?

Two stacked changes. First, the new MLX engine announced June 11, 2026 — Ollama called it its "highest performance on Apple Silicon yet." Second, v0.31.1 (June 30) added multi-token prediction for Gemma 4, making it nearly 90% faster on average on Apple Silicon; Ollama's June 29 blog post framed it as "up to 90% faster" with coding agents. v0.32.1 then fixed MLX cache leaks, cleaning up the rough edges.

What does Ollama's $88M raise mean for local AI users?

On July 9, 2026, Ollama announced $88M in funding from Benchmark, Theory Ventures, 8VC, Y Combinator, and angel investors, saying it serves 8.9 million developers. The blog title — "Ollama: all aboard open models" — signals continued open-model commitment, but the timing (two days before agent mode became the default) shows where the money is going: agents, cloud-linked features like signin-gated web search, and the :cloud model tier. Expect the free local runner to stay, with monetizable agent features layered on top.

Ready to Go Beyond Tutorials?

20 structured courses with hands-on chapters - build RAG chatbots, AI agents, and ML pipelines on your own hardware.

Bonus kit

AI Agent Starter Kit

Ready-to-adapt local AI agents with native tool calling, memory, and a multi-step planner. Included with paid plans, or free after subscribing to both Local AI Master and Little AI Master on YouTube.

See Plans →

Was this helpful?

📅 Published: July 20, 2026🔄 Last Updated: July 20, 2026✓ Manually Reviewed
LM

Written by the Local AI Master Team

The team behind Local AI Master

We build Local AI Master around practical, testable local AI workflows: model selection, hardware planning, RAG systems, agents, and MLOps. The goal is to turn scattered tutorials into a structured learning path you can follow on your own hardware.

✓ Local AI Curriculum✓ Hands-On Projects✓ Open Source Contributor
📚
Free · no account required

Grab the AI Starter Kit — career roadmap, cheat sheet, setup guide

No spam. Unsubscribe with one click.

🎯
AI Learning Path

Ollama’s running. Here’s what to build with it.

Go from “ollama run” to RAG apps, agents, and fine-tuned models — structured and hands-on. First chapter free.

Or own it for life — Lifetime $149 $599, pay once
Free Tools & Calculators