Todas las ediciones
noticiasPublicado 2026-07-17

Cold Open — Kimi K3 Ships: The Largest Open Model, Frontier-Class, Free to Download

Moonshot AI lanzó Kimi K3 hoy — 2.8 billones de parámetros, 50B activos, MoE, pesos completamente abiertos, y Latent Space lo llama el modelo abierto más grande jamás lanzado. Además: LM Studio Bionic lleva flujos de trabajo agénticos a modelos abiertos locales, y Capital One hizo open-source VulnHunter, su herramienta de seguridad de código agéntica de producción.

video
Cold Open — Kimi K3 Ships: The Largest Open Model, Frontier-Class, Free to Download
vistas

Thursday, July 17, 2026. We scanned 406 items across 23 sources; three made the cut — and the lead is the kind of open-weights release that resets the baseline for what you can download and run yourself.

Listen to today's episode on the Cold Open podcast page.


The lead · Kimi K3 ships — the largest open model ever, at frontier-class pricing

An enormous open vault releasing a cascade of billions of glowing neural nodes into the cosmos, electric blue and gold light rays streaming outward, cinematic, representing the open release of the world's largest AI model, no text

Moonshot AI released Kimi K3 today, and the numbers are legitimately unprecedented in the open-weights space.

2.8 trillion total parameters. 50 billion active. Mixture-of-experts architecture, fully open weights. Latent Space's AINews headline: "Kimi K3 2.8T-A50B: the largest open model ever released." The performance framing they use is notable — Opus 4.8-class at Sonnet 5 pricing. That is the same jump the open-source community has been pointing toward: frontier reasoning capacity at a fraction of the inference cost, because MoE activates only a fraction of the total parameter count per token.

Simon Willison covered the model and specifically noted it passes his "pelican benchmark" — a proxy for genuine multi-step reasoning — with unusual fluency. He also observed the model's context handling is meaningfully better than prior open releases at this tier.

"a great week for open models continues." — Latent Space AINews, July 17 2026

Moonshot AI is a Chinese AI lab. Kimi K3 is its third-generation model, following Kimi K1.5 and K2. The release continues a pattern where Chinese labs have been pushing the frontier of openly-licensed model scale (DeepSeek, Qwen, and now Kimi). For builders who track model lineage and provenance, that context is worth noting.

Why it matters

For most builders, the immediate implication is straightforward: the largest open-weights model on the planet now exists and can be downloaded. If you build on APIs today and have any reason to want local inference — cost control, latency, data privacy, regulated-industry constraints, or simply not wanting to be exposed to API pricing changes — K3 is now the ceiling of what open-source can offer.

The MoE architecture makes this more practical than raw parameter count suggests. At 50B active parameters, inference cost is in the same neighborhood as dense models at that active size, not the 2.8T total. The ceiling moved; the floor did not rise proportionally.

The pricing framing matters for a second reason: if a fully open model performs at Opus 4.8 class, that changes the calculus for every team currently paying for frontier API access. Not overnight, and not for every use case — but the competitive pressure on closed-model pricing just got meaningfully more real.

The fine print

"Largest open model" claims circulate often enough that they deserve scrutiny. The 2.8T figure is total parameters across the expert pool; the model does not run all 2.8T simultaneously. The performance comparison to Opus 4.8 comes from Latent Space's curated benchmarks — independent verification across production workloads will take weeks. Simon Willison's benchmark is informal but has a consistent track record for filtering out models that perform well on evals but struggle with actual reasoning chains.

Deployment at this scale requires hardware that most individuals do not own. K3 in its full form is a cluster-scale workload. Expect quantized and distilled variants to follow quickly, as happened with every prior large open release.

Sources: latent.space — Kimi K3 AINews · simonwillison.net — Kimi K3 and the pelican benchmark · kimi.com/blog/kimi-k3


02 · LM Studio Bionic: a local AI agent for open models

A sleek laptop on a dark desk with a glowing blue agentic interface on screen, showing tool call chains and reasoning steps in a terminal-style display, warm ambient light, no text, cinematic product scene

LM Studio shipped Bionic, described as "the AI agent for open models." The framing is direct: a local-first runtime for running agentic workflows — tool calls, multi-step reasoning, code execution — entirely on your own hardware, using open-weights models.

Bionic is a runtime layer that sits between your machine's compute and the open models you run locally. It handles the scaffolding that makes an LLM into an agent: tool routing, context management across turns, parallel execution of subtasks, and a way to hook in external capabilities. The key properties: no API call leaves your machine, no token costs, no usage policy from a hosted provider, and — as of today — compatibility with the models now at the frontier of open-weights performance.

Why it matters. The agentic coding and reasoning wave of 2026 has been largely cloud-gated. Claude Code, Codex, and Cursor all require an API connection. LM Studio Bionic is the most polished attempt yet to bring that experience local. For anyone who has wanted agentic tools but cannot use cloud APIs — regulated industries, offline environments, cost-constrained teams, or builders who simply want to run Kimi K3 without an intermediary — this is the most concrete path forward that shipped today.

Sources: lmstudio.ai/blog/introducing-lm-studio-bionic


03 · Capital One open-sourced VulnHunter — their production agentic code-security tool

An AI agent robot scanning through glowing lines of code on a dark background, with red vulnerability markers appearing across multiple files, a teal scanning beam sweeping methodically, cinematic, no text

Capital One released VulnHunter as open source — their internal agentic AI tool for finding vulnerabilities in production codebases.

The approach is different from traditional static analysis. Rather than running deterministic pattern-matching rules over code, VulnHunter deploys an AI agent that navigates the codebase like a human auditor: following function call chains, reasoning about data flow across files, tracking how user input moves through the system, and flagging insecure patterns in context. It is designed to find vulnerabilities that require understanding the semantics of code, not just its syntax.

Capital One built and runs this in production. It is now Apache-licensed and available on GitHub.

Why it matters. Most open-source security tooling is still rule-based. The agentic approach addresses the class of vulnerabilities that rules miss: indirect data flows, conditional exposure paths, misuse of safe primitives in unsafe combinations. A major financial institution open-sourcing their internal agentic security scanner is both a validation that agentic code analysis works at production scale, and a free blueprint for teams who want to build something similar.

Sources: capitalone.com/tech — VulnHunter announcement


Also on the radar

  • AI ROI — OpenAI CFO Sarah Friar published A scorecard for the AI age: a practical framework for enterprises to measure whether AI is generating useful work or burning compute. Worth reading if you own the business case for AI in your org.
  • WebAssembly — Firefox now runs inside WebAssembly inside another browser, courtesy of Puter Labs. Simon Willison called it "absurd and I love it." It is both of those things.
  • Evals controversy — A Hacker News thread surfaced that blatant AI slop won a $25k DeepMind Kaggle Grand Prize. The discussion is a useful stress-test for how the field thinks about evaluating AI-generated submissions.
  • Codex caution — Simon Willison highlighted a reported Codex bug involving incorrect file deletions. If you run Codex autonomously on a codebase, review its diff before committing.

Trends in dev tools

What moved today in the tools engineers actually ship with.

  • Agentic AI factories need co-designed infrastructure. NVIDIA published how BlueField SmartNICs enable extreme co-design for agentic AI factories — the argument being that one agentic request triggers many model calls, tool calls, and memory lookups in parallel, and that the network layer can no longer be an afterthought. The architecture of the machines running agents is diverging from the architecture of machines that ran batch inference. Source: developer.nvidia.com
  • Context-aware video agents are entering enterprise workflows. NVIDIA's Metropolis platform published a detailed walkthrough of integrating video AI agents into enterprise operations. The pattern: a perception layer runs video analysis, feeds structured signals to a reasoning agent, which decides what to do. This is agent-plus-sensor, not agent-plus-text, and it represents a meaningful expansion of what agentic systems are being pointed at. Source: developer.nvidia.com
  • Retrieval for agents just got a new #1. NVIDIA's Nemotron 3 Embed ranked first overall on RTEB — the Retrieval Text Embedding Benchmark, which covers the retrieval quality most relevant to RAG and agentic systems that need to fetch context. If you are evaluating embedding models for an agentic stack, RTEB is the benchmark to check against. Source: huggingface.co
  • Agent harnesses are learning from their own experience. A new paper, MemoHarness, proposes agent harnesses that accumulate structured memories of past runs and use them to improve future performance — without retraining. The idea: the harness remembers what worked, what failed, and why, and routes future tasks accordingly. Source: arxiv.org

Popular skills

The agent-skills conversation is moving into reliability, memory, and the question of what an agent harness should know about itself.

  • Harnesses that learn. MemoHarness frames long-term harness memory as a composable component — a skill that any agent can be given to make its own execution history searchable and actionable. The pattern is: observe → store → retrieve → apply. Packaged as a skill, this makes any agent progressively better at any task it has run before. Source: arxiv.org/abs/2607.14159
  • Tool-use expansion without retraining. ToolAnchor proposes a method for giving agents new tools without retraining from scratch — anchoring counterfactual context to help the model reason about a tool it has never seen in training. This is essentially a skill for expanding an agent's toolkit at inference time. Source: arxiv.org/abs/2607.14145
  • Hierarchy-guided retrieval as a skill. HG-RAG proposes retrieval-augmented generation that respects the hierarchical structure of knowledge graphs — letting an agent query structured sources (documentation trees, codebases, ontologies) in a way that flat vector search misses. For any agent that needs to reason across structured knowledge, this is a retrieval skill worth watching. Source: arxiv.org/abs/2607.14095

AI fun fact

The largest publicly disclosed AI model in 2020 was GPT-3, at 175 billion parameters, which OpenAI described at the time as "unimaginably large." Kimi K3, released today, has 2.8 trillion total parameters — sixteen times larger than GPT-3 — and is fully downloadable under an open license. The entire arc from "this scale is unimaginable" to "this scale is freely available" took exactly six years.

Source: latent.space — Kimi K3 AINews


Sources: latent.space — Kimi K3 AINews · simonwillison.net — Kimi K3 · kimi.com/blog/kimi-k3 · lmstudio.ai — Bionic · capitalone.com — VulnHunter · openai.com — AI scorecard · developer.nvidia.com — BlueField agentic factories · developer.nvidia.com — video AI agents · huggingface.co — Nemotron 3 Embed · arxiv.org — MemoHarness

Comentarios