HomeLocal LLM / Open ModelsOllama v0.32.6 リリース
Ollama Releases v0.32.6

Ollama v0.32.6 リリースOllama Releases v0.32.6

AI要点サマリSummary highlight

Qwen3.5がApple GPU上でMLXエンジンのMTPヘッドによる投機的デコードにより高速化され、OpenAI互換ストリーミング形式も修正された。

Ollama v0.32.6 speeds up Qwen3.5 on Apple GPUs via automatic speculative decoding with the MLX engine, and fixes /v1/chat/completions streaming to match OpenAI's wire format.

要約と収集メタデータをもとに生成した AI 解説本文です。元記事全文の転載・翻訳ではありません。This AI explainer is generated from the summaries and collected metadata, not from a reproduction or translation of the full source article.

ローカルLLM実行環境として広く使われるOllamaが、v0.32.6をリリースした。今回の更新は、Apple GPU上でのQwen3.5の推論高速化と、OpenAI互換ストリーミングAPIの挙動修正が主な内容となる。

最大の変更点は、AppleのMLXエンジンにおける投機的デコード(speculative decoding)の自動適用だ。Qwen3.5が備えるMTP(マルチトークン予測)ヘッドを投機的デコードに利用することで、Apple GPU上でQwen3.5を動かす際の生成速度が向上するという。ユーザー側で特別な設定を行わなくても自動的に適用される点がポイントとされる。

投機的デコードは、軽量なドラフトモデルなどで先にトークン候補を生成し、本体モデルでまとめて検証することで生成を高速化する手法として知られる。今回はモデル自身のMTPヘッドを使うため、別途ドラフトモデルを用意せずに恩恵を受けられる。MLXはApple Silicon向けに最適化された機械学習フレームワークで、Mac環境でのローカル推論との親和性が高い。

もう一つの柱が、/v1/chat/completionsのストリーミング形式の修正である。OpenAIのワイヤーフォーマットに合わせ、roleは最初のチャンクにのみ含め、finish_reasonは独立したチャンクで返し、usageも別のチャンクとして送るように改められた。OllamaはOpenAI互換APIを提供しており、既存のOpenAI向けクライアントやツールをそのまま流用できる点が利点となってきた。今回の修正で、そうしたエコシステムとの互換性がより厳密になったと見られる。

ローカルLLMを取り巻く環境では、llama.cppやLM Studioなど複数の選択肢が並立し、Apple Silicon上での推論最適化が各所で進む。Qwen3.5はAlibabaが公開するモデル系列で、オープンな重みを扱えるツールとの組み合わせで活用の幅が広がっている。今回のアップデートは派手な新機能ではないものの、Mac利用者の体感速度とAPI互換性という実用面を着実に底上げする内容と言えそうだ。

Ollama has published version 0.32.6, a point release that focuses on two areas: faster inference for the Qwen3.5 model on Apple hardware and closer conformance to OpenAI's streaming API format. For developers running large language models locally, both changes address practical friction points—performance on Apple Silicon and drop-in compatibility with existing OpenAI client code.

The headline change is that Qwen3.5 now runs faster on Apple GPUs. According to the release notes, the MLX engine automatically uses the model's MTP head for speculative decoding. MLX is Apple's open-source array framework built specifically for Apple Silicon, and Ollama's MLX engine path lets it take advantage of the unified memory and GPU on M-series chips rather than relying solely on more general backends. Enabling this behavior automatically means users should benefit without needing to configure a separate draft model or tune additional flags.

Speculative decoding is a technique for accelerating text generation without changing the output distribution. In the conventional form, a small, fast "draft" model proposes several tokens ahead, and the larger target model verifies them in a single forward pass, accepting the ones that match and discarding the rest. Because verification is cheaper than sequential generation, the approach can raise throughput when the draft's guesses are frequently correct. The MTP, or multi-token prediction, head is a component trained into some newer models—Qwen3.5 among them—that predicts more than one future token at a time. Using that built-in head as the draft source avoids the need to load and manage a separate small model, which simplifies deployment and reduces memory overhead.

The second change concerns the OpenAI-compatible endpoint. Ollama exposes a /v1/chat/completions route that mirrors OpenAI's API so that tools written for OpenAI can point at a local Ollama server with minimal modification. In this release, the streaming responses from that endpoint were adjusted to match OpenAI's wire format more precisely. Specifically, the role field now appears only on the first chunk, the finish_reason is delivered on its own chunk, and token usage information is sent in a separate chunk. These may sound like small details, but strict client libraries and downstream parsers often expect exactly this sequence; mismatches can cause errors or dropped metadata in applications that were built and tested against OpenAI's own service.

Ollama is a widely used tool for running open-weight language models on local machines, packaging model weights, a runtime, and a REST API behind a single command-line interface. It competes with and complements other local-inference options such as llama.cpp, LM Studio, and server-oriented stacks like vLLM. A recurring theme across these projects is the effort to be a drop-in replacement for hosted APIs, which is why OpenAI wire-format compatibility carries weight: it lets developers reuse SDKs, agents, and integrations without rewriting client code.

Apple Silicon support has become a significant front in local inference because the unified-memory architecture of M-series chips allows relatively large models to run on consumer laptops and desktops. By routing Qwen3.5 through the MLX engine and leaning on the model's own MTP head, Ollama appears to be targeting the segment of users who run models directly on Macs and want better token rates without extra setup.

The Qwen family, developed by Alibaba, has been iterated rapidly and is frequently among the first open-weight releases to adopt features like multi-token prediction. Support for such capabilities in a runtime like Ollama tends to follow model releases, and this update reflects that pattern: the engine is being extended to exploit architectural features the models already ship with.

As with any point release, the practical gains will depend on hardware, model quantization, and workload. Users on non-Apple platforms are unlikely to see the MLX-specific speedups, and the streaming fixes will mainly matter to those consuming the OpenAI-compatible endpoint programmatically. Anyone relying on that endpoint in production may want to verify their client's behavior against the revised chunk sequence. The release is available through Ollama's standard update channels.

  • 出典SourceOllama Releases公式Official
  • 直近30件の平均重要度Avg importance, last 301=Info · 2=Medium · 3=High
  • 配信形式FormatリリースRelease
  • 重要度Importance重要度 MediumMedium priority(Local LLM / Open Models 230件中、同等以上 207件)(207 of 230 Local LLM / Open Models entries are equal or higher)
  • 情報の寿命Half-life⏱️ 短命 (ニュース)Short-lived (news)
  • 原文言語Source languageEN
  • 収集日時Collected2026/08/15 00:39

本ページの本文と要約は AI による自動生成です。日本語版と英語版は言語ごとに独立して生成されるため、表現や詳しさが異なる場合があります。正確性は元記事 (github.com) をご確認ください。The body and summaries are AI-generated independently for each language, so wording and detail may differ. Verify accuracy at the original source (github.com).

🏠Local LLM / Open Models の他の記事More from Local LLM / Open Modelsもっと見る →View more →