Ollama v0.32.10 Boosts Local AI Performance; New GGUF & Nemotron Models Emerge

Ollama's latest release optimizes speculative decoding for faster local inference, while the multimodal Muse-Glimmer-30B model becomes widely accessible via a trending GGUF quantization. Additionally, NVIDIA introduces Nemotron 3.5 Lightning, a new open-weight model engineered for efficient AI agent task execution.

Ollama v0.32.10 Speeds Up Speculative Decoding with Repeat Penalty Default Change (Ollama)

Ollama, a popular tool for running large language models locally, has released version v0.32.10, bringing a notable enhancement to inference performance, particularly for speculative decoding. The key change in this release is the default setting for `repeat_penalty`. Previously, models in Ollama would default to a `repeat_penalty` of 1.1, which slightly discouraged repetition in generated text. However, this default behavior sometimes introduced overhead and differed from the standard practices of other popular inference engines. With v0.32.10, Ollama now defaults `repeat_penalty` to 1.0 (effectively off) for models that do not explicitly define this parameter. This alignment with other engines not only ensures consistency across different inference platforms but, more importantly, speeds up speculative decoding. Speculative decoding is a crucial optimization technique that uses a smaller, faster model to "speculate" the next tokens, which are then verified by the larger target model. By reducing computational overhead associated with the repeat penalty, Ollama can execute this process more efficiently, leading to faster local inference. Users running older models can still set a per-model parameter if they notice unexpected repetitions or prefer the previous behavior, maintaining flexibility while improving out-of-the-box performance. This update underscores Ollama's commitment to optimizing local AI inference on consumer hardware.
This is a great quality-of-life update for Ollama users. Defaulting `repeat_penalty` off means models run faster out-of-the-box, especially benefiting those leveraging speculative decoding, which is crucial for local inference speed.

Muse-Glimmer-30B Now Available in GGUF for Consumer GPUs, Trending on Hugging Face (unsloth/Hugging Face Trending)

The Meta-developed Muse Glimmer 30B, an open-source, multimodal, and agentic model, is now trending on Hugging Face thanks to its GGUF quantization by Unsloth. Muse Glimmer is designed for rich conversational experiences, featuring an `image-text-to-text` pipeline that allows it to understand and respond based on both textual prompts and visual input. Its agentic capabilities enable it to perform tool calls and complex multi-step reasoning, making it suitable for advanced AI applications. Meta's original release highlighted its potential for local deployment due to its open-source nature. The availability of Muse-Glimmer-30B in the GGUF format is a significant development for local AI enthusiasts and practitioners. GGUF (GGML Universal File Format) is a highly efficient quantization format optimized for CPU and consumer GPU inference, particularly with tools like `llama.cpp` and Ollama. Unsloth's conversion makes this powerful 30-billion-parameter model accessible on a wide range of consumer hardware, including Macs with Apple Silicon and mid-range NVIDIA GPUs, where the full FP16 model would be prohibitively memory-intensive. This GGUF version allows for a smaller memory footprint and faster inference speeds while retaining much of the original model's performance, democratizing access to cutting-edge multimodal agent capabilities. Its rapid rise in Hugging Face trends underscores the community's demand for high-quality, quantized open models.
Seeing a powerful multimodal model like Muse Glimmer readily available in GGUF is fantastic. Unsloth's contribution makes state-of-the-art capabilities accessible on consumer hardware, moving multimodal agents closer to local deployment.

NVIDIA Unveils Nemotron 3.5 Lightning: A New Open-Weight Model for Fast Agent Task Execution (NVIDIA Developer Blog)

NVIDIA has announced Nemotron 3.5 Lightning, a new open-weight model specifically engineered to enhance the efficiency and accuracy of long-running AI agents. This model addresses a critical bottleneck in agentic workflows: the high-volume execution of specialized tasks such as tool calls, result validation, and subagent delegation. While frontier reasoning models are excellent for complex decision-making, they can be overkill and slow for these iterative, high-frequency operations. Nemotron 3.5 Lightning is designed to offload these tasks, providing a faster and more accurate alternative. The architecture of Nemotron 3.5 Lightning focuses on rapid, precise execution, enabling AI agents to complete their tasks more quickly and reliably. This specialization allows developers to architect more robust and responsive AI systems, where a general-purpose reasoning model can coordinate high-level strategy, while Nemotron 3.5 Lightning handles the detailed, repetitive work. As an open-weight model, it offers developers the flexibility to integrate it into custom agent frameworks and fine-tune it for specific applications, fostering innovation in the field of agent-based AI. NVIDIA's introduction of Nemotron 3.5 Lightning signifies a strategic move towards modular and optimized AI agent development, promising significant improvements in performance for agentic applications runnable on various NVIDIA platforms.
Nemotron 3.5 Lightning directly addresses the need for efficient specialized models in agentic workflows. Its open-weight nature means developers can integrate high-performance task execution into local or custom agent architectures, enhancing overall agent efficiency.