DCAI
DC AI 热点

全部 AI 动态

9月24日2026-09-24
Ollama 更新AI 评分 40/10012:45

本地大模型工具发布 v0.34.4:优化思维模型结构化输出与 Apple Silicon 性能

本地大模型工具发布 v0.34.4 版本更新。新版本支持在思考模型上单次生成结构化输出,提升了运行速度与可靠性;同时加速了 Apple Silicon 设备上 Qwen 3.8 的提示词处理,并改进了 Gemma 4 对高分辨率图像的处理机制。此外,更新修复了大型本地库偶发“模型未找到”及 macOS 界面卡顿等问题,并同步升级了 llama.cpp、MLX 和 XGrammar 依赖。

阅读原文 ↗推荐理由:包含端侧模型结构化输出优化及 Apple Silicon 平台性能与稳定性修复的小版本更新。# Apple Silicon# 结构化输出# llama.cpp# MLX# 端侧AI
9月23日2026-09-23
Ollama 更新✦ 精选规则精选04:42

v0.34.3

What's Changed GET /api/show now advertises each model's thinking controls and default: Available in the CLI with: ollama show gemma4 thinking levels false, true default true Available in the API with: curl http://localhost:11434/api/show -d ' {"model": "glm-5.3-flash:cloud"} ' { "thinking" : { "values" : [ " low " , " high " , " max " ], "default" : " max " } } Also available on ollama.com directly for cloud models. Nemotron H vision models are now supported on Apple Silicon with MLX Ollama's macOS app will now no longer reopen windows you've closed when activating it Fix for model pulls from HuggingFace Full Changelog : v0.34.2...v0.34.3

9月19日2026-09-19
Ollama 更新✦ 精选规则精选08:15

v0.34.3-rc1

server: allow registry cross-host redirects among allowlisted hosts (…

9月18日2026-09-18
Ollama 更新✦ 精选规则精选07:04

v0.34.2

What's Changed Added first-run setup when running ollama , with options to sign in or continue locally. Setup completion is shared with the desktop app on macOS and Windows. Added ollama://apps to open the desktop app’s Apps page directly on macOS and Windows. Fixed excessive memory growth during long generations with MLX speculative decoding. Updated llama.cpp. Full Changelog : v0.34.1...v0.34.2

Ollama 更新✦ 精选规则精选02:49

v0.34.2-rc3

cli: add first-run onboarding shared with the desktop app ( #18495 )

Ollama 更新✦ 精选规则精选00:45

v0.34.2-rc2: mlxrunner: Release freed KV buffers during speculative decode

The decode loop releases MLX's pool of freed buffers every 256 generated tokens, which is also how often the KV cache grows and drops its previous, smaller buffers. The check fires only when the token count lands exactly on a multiple of 256. Speculative decoding emits several tokens per round, so most rounds step over the boundary and the pool is never released. Each growth at a long context leaves several GB of buffers that no later allocation can reuse, so the runner's footprint keeps climbing over a long generation until the system runs out of memory. We now release the pool whenever a round crosses a multiple of 256 tokens, which is what

9月17日2026-09-17
Ollama 更新✦ 精选规则精选05:06

v0.34.2-rc1: mlxrunner: lay out model by contract, checkpoint and construction

model is one package with three jobs: the contract between the runner and the architectures, the opened checkpoint, and building nn layers from checkpoint tensors. Its files did not say which was which. base.go carried the folded package's name over the interfaces and the registry, root.go held the safetensors header scan next to Root, and quant.go mixed the nvfp4 global-scale helpers with quant parameter resolution. base.go becomes model.go, named for what it holds. root.go keeps Root and Open; TensorQuantInfo and the header scan join quant.go, so everything the checkpoint says about quantization is read and resolved in one file. The global-