Updatify / Ollama | Release notes

Create your changelog

Open-source framework that allows you to download, set up, and run Large Language Models (LLMs)—like Llama, Mistral, and DeepSeek

Update Jun 9, 2025 tracked by Updatify

v0.9.1

Tool calling improvements

New tool calling support

The following models now support tool calling:

Tool calling reliability has also been improved for the following models:

To re-download the models, use ollama pull.

New Ollama for macOS and Windows preview

A new version of Ollama’s macOS and Windows applications are available to test for early feedback. New improvements to the apps will be introduced over the coming releases:

If you have feedback, please create an issue on GitHub with the app label. These apps will automatically update themselves to future versions of Ollama, so you may have to redownload new preview versions in the future.

Screenshot 2025-06-17 at 11 41 43 AM

New features

Expose Ollama on the network

Ollama can now be exposed on the network, allowing others to access Ollama on other devices or even over the internet. This is useful for having Ollama running on a powerful Mac, PC or Linux computer while making it accessible to less powerful devices.

Allow local browser access

Enabling this allows websites to access your local installation of Ollama. This is handy for developing browser-based applications using Ollama’s JavaScript library.

Model directory

The directory in which models are stored can now be modified! This allows models to be stored on external hard disks or alternative directories than the default.

Smaller footprint and faster starting on macOS

The macOS app is now a native application and starts much faster while requiring a much smaller installation.

What’s Changed

  • Magistral now supports disabling thinking mode. Note: it is also recommended to change the system prompt when doing so.
  • Error messages that previously showed POST predict will now be more informative
  • Improved tool calling reliability for some models
  • Fixed issue on Windows where ollama run would not start Ollama automatically

New Contributors

Full Changelog: https://github.com/ollama/ollama/compare/v0.9.0…v0.9.1

Update May 29, 2025 tracked by Updatify

v0.9.0

ollama thinking

New models

  • DeepSeek-R1-2508: DeepSeek-R1 has received a minor version upgrade to DeepSeek-R1-0528 for the 8 billion parameter distilled model and the full 671 billion parameter model. In this update, DeepSeek R1 has significantly improved its reasoning and inference capabilities.

Thinking

Ollama now has the ability to enable or disable thinking. This gives users the flexibility to choose the model’s thinking behavior for different applications and use cases.

When thinking is enabled, the output will separate the model’s thinking from the model’s output. When thinking is disabled, the model will not think and directly output the content.

Models that support thinking:

When running a model that supports thinking, Ollama will now display the model’s thoughts:

% ollama run deepseek-r1
>>> How many Rs are in strawberry
Thinking...
First, I need to understand what the question is asking. It's asking how many letters 'R' are present in the word "strawberry."

Next, I'll examine each letter in the word individually.

I'll start from the beginning and count every occurrence of the letter 'R.'

After reviewing all the letters, I determine that there are three instances where the letter 'R' appears in the word "strawberry."
...done thinking.

There are three **Rs** in the word **"strawberry"**.

In Ollama’s API, a model’s thinking is now returned as a separate thinking field for easy parsing:

{
  "message": {
    "role": "assistant",
    "thinking": "First, I need to understand what the question is asking. It's asking how many letters 'R' are present in the word "strawberry...",
    "content": "There are **3** instances of the letter **R** in the word **"strawberry."**"
  }
}

Turning thinking on and off

In the API, thinking can be enabled by passing "think": true and disabled by passing "think": false

curl http://localhost:11434/api/chat -d '{
  "model": "deepseek-r1",
  "messages": [
    {
      "role": "user",
      "content": "Why is the sky blue?"
    },
  ],
  "think": true
}'

In Ollama’s CLI, use /set think and /set nothink to enable and disable thinking.

What’s Changed

  • Add thinking support to Ollama

Full Changelog: https://github.com/ollama/ollama/compare/v0.8.0…v0.9.0

Update May 21, 2025 tracked by Updatify

v0.7.1

What’s Changed

  • Improved model memory management to allocate sufficient memory to prevent crashes when running multimodal models in certain situations
  • Enhanced memory estimation for models to prevent unintended memory offloading
  • ollama show will now show ... when data is truncated
  • Fixed crash that would occur with qwen2.5vl
  • Fixed crash on Nvidia’s CUDA for llama3.2-vision
  • Support for Alibaba’s Qwen 3 and Qwen 2 architectures in Ollama’s new multimodal engine

New Contributors

Full Changelog: https://github.com/ollama/ollama/compare/v0.7.0…v0.7.1

Update May 13, 2025 tracked by Updatify

v0.7.0

multimodality-uncompressed

Ollama now supports multimodal models via Ollama’s new engine, starting with new vision multimodal models:

What’s Changed

  • Ollama now supports providing WebP images as input to multimodal models
  • Fixed issue where a blank terminal window would appear when runnings models on Windows
  • Fixed error that would occur when running llama4 on NVIDIA GPUs
  • Reduced log level of key not found message
  • Ollama will now correct remove quotes from image paths when sending images as input with ollama run
  • Improved performance of importing safetensors models via ollama create
  • Improved prompt processing speeds of Qwen3 MoE on macOS
  • Fixed issue where providing large JSON schemas in structured output requests would result in an error
  • Ollama’s API will now return code 405 instead of 404 for methods that are not allowed
  • Fixed issue where ollama processes would continue to run after a model was unloaded

New Contributors

Full Changelog: https://github.com/ollama/ollama/compare/v0.6.8…v0.7.0

Update May 3, 2025 tracked by Updatify

v0.6.8

What’s Changed

  • Performance improvements for Qwen 3 MoE models (30b-a3b and 235b-a22b) on NVIDIA and AMD GPUs
  • Fixed GGML_ASSERT(tensor->op == GGML_OP_UNARY) failed issue caused by conflicting installations
  • Fixed a memory leak that occurred when providing images as input
  • ollama show will now correctly label older vision models such as llava
  • Reduced out of memory errors by improving worst-case memory estimations
  • Fix issue that resulted in a context canceled error

New Contributors

Full Changelog: https://github.com/ollama/ollama/compare/v0.6.7…v0.6.8

Update Apr 26, 2025 tracked by Updatify

v0.6.7

New models

  • Qwen 3: Qwen3 is the latest generation of large language models in Qwen series, offering a comprehensive suite of dense and mixture-of-experts (MoE) models.
  • Phi 4 reasoning and Phi-4-mini-reasoning: New state-of-the-art reasoning models from Microsoft
  • Llama 4: state-of-the-art multi-modal models from Meta

What’s Changed

  • Add support for Meta’s Llama 4 multimodal models
  • Add support for Microsoft’s Phi 4 reasoning models, and Phi 4 mini reasoning model
  • Increased default context window to 4096 tokens
  • Fixed issue where image paths would not be recognized with ~ when being provided to ollama run
  • Improved output quality when using JSON mode in certain scenarios
  • Fixed tensor->op == GGML_OP_UNARY errors when running a model due to conflicting inference libraries
  • Fixed issue where model would be stuck in the Stopping... state

New Contributors

Full Changelog: https://github.com/ollama/ollama/compare/v0.6.6…v0.6.7