惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
美团技术团队
Recent Announcements
Recent Announcements
B
Blog
GbyAI
GbyAI
雷峰网
雷峰网
博客园_首页
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
V
V2EX
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
L
LangChain Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
A
About on SuperTechFans
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
F
Fortinet All Blogs
N
Netflix TechBlog - Medium
Last Week in AI
Last Week in AI
aimingoo的专栏
aimingoo的专栏

Mozilla.ai

Benchmarking llama.cpp vs llamafile vs LM Studio vs Ollama: What Moved Throughput Introducing Agent Skills in Octonous Open Source Is Not a Virtue: It’s an Ownership Model Using Octonous as a Product Operations Manager The Future of AI is Personal — But Not The Way You Think How Frontier Labs Are Building Subtle Developer Lock-In Who Cares About LLM costs? Stop Chasing New Models. Build Once and Access Them All. From Evaluation to Guardrails: What We Brought to ACM FAccT 2026 Open Models are ready for agents. Their APIs are not. Using Octonous as an AI Safety Engineer The Control Layer: Why the Next Era of AI Is About Infrastructure, Not Just Models Introducing Otari: The Open-Source LLM Control Plane Announcing transcribe.cpp Using Octonous as a Product Manager Image Classification Comes to encoderfile What is an LLM control plane? Use the Otari Gateway with OpenCode Otari: Own Your AI Stack | AI Gateway & Hosted Platform AI Got Expensive. Now What? | Mozilla.ai cq exchange: Agents without Borders The Interface Is No Longer the Product VIBE✓: First Defense for cq (Stack Overflow for Agents) Octonous Open Beta: What We've Learned and Where We're Going Sovereign AI: Control, Choice, and Beyond Geopolitics Encoderfile’s New Format: Why a “Dull” Design Wins The Real Challenge Behind Small Trade Businesses Hardening Your LLM Dependency Supply Chain cq: Stack Overflow for Agents cq: Stack Overflow for Agents
llamafile v0.10.5
Anushri Gupta · 2026-08-05 · via Mozilla.ai
Product Release

llamafile v0.10.5 is out! Updated llama.cpp core support lets you run two huge models locally: the compressed 6GB Ternary Bonsai 27B and the fast 118B Laguna-S-2.1 coding MoE. This release also fixes docs and adds pre-built transcribefile speech-to-text binaries.

llamafile v0.10.5

llamafile v0.10.5 is out, and it tracks a much more recent llama.cpp, which lets it run two models people have been using lately: Ternary Bonsai 27B and Poolside's Laguna-S-2.1. Both already existed as GGUF weights, but older llamafile builds couldn't load them, because the bundled llama.cpp predated support for their architecture and quantization. This release also includes documentation fixes covering the help system, the different release binaries, and GPU support.

Two big-sounding models that run locally

Both new models are interesting for the same reason, and they get there two different ways. Each one sounds too large for a laptop, but isn't, because of how it's built.

Ternary Bonsai 27B is a compressed build of Qwen3.6-27B from PrismML. Its weights are ternary, so each one is constrained to {-1, 0, +1}, which works out to roughly 1.58 bits per weight instead of 16. The result is a 27B model that lands around 6GB on disk and is meant to run on a laptop while keeping most of the quality of the full-precision base. It's also multimodal, though the vision tower is only loaded when you actually pass it an image. Weights and details are on Hugging Face.

Laguna-S-2.1 is Poolside's open-weight coding model. It's listed at 118B parameters, which sounds like a server model, but it's a Mixture-of-Experts: 118B total, 8B active per token. Generation cost tracks the 8B that fire on each token, not the full 118B, so a quantized copy fits in consumer memory and runs at usable speeds. It's built for agentic coding and long sessions, with a large context window. Worth noting: the quantized checkpoints are configured for 256K context rather than the full 1M that the BF16 weights support.

Speed depends on your quantization and hardware, but both are fast enough to use interactively, which a year ago was not a given for a 27B or a 118B on a personal machine, meaning a laptop or desktop with enough RAM rather than a server or a rented GPU.

Why these models showed up now: the boring part

llamafile can only run the models its embedded llama.cpp understands, and llama.cpp moves fast, so the real bottleneck on model support in llamafile is keeping up with upstream. In v0.10.5, we ran three syncs in two weeks, advancing the embedded llama.cpp across three upstream builds, and improved the agent skill that drafts those sync PRs midway through, so later syncs needed fewer manual passes before merging. This turnaround will help us get you new models sooner after release instead of months.

This pins a tested checkpoint for llama.cpp support, not same-hour parity with an upstream that keeps moving. We expect to have fewer corrective commits and smaller diffs over the next few releases.

For a project whose whole value is packaging, this sync work matters more than the two models it happens to unlock. These models are proof it's working.

Packaging and docs

One packaging note: transcribefile, the self-contained speech-to-text executable built on transcribe.cpp that we introduced back in June, now ships as a release artifact thanks to a community contribution. Nothing new about the capability, you just no longer have to build the binary yourself to get local STT.

On docs, this release adds coverage of the new help system and CLI arguments. Community contributions cleaned up a couple of longstanding confusions too: the difference between llamafile, llamafile-thin, and the other release binaries, and current GPU support including the Vulkan backend. Thanks to everyone who filed and fixed these.

Get it

Grab v0.10.5 from the releases page. If something breaks, an issue or a discussion is the fastest way to reach us.