Mind Lab wants to settle an argument that has quietly split the agent world: does an LLM actually need to update its weights to "learn," or is context, memory, and better prompting enough? The startup's answer, shipped July 21, 2026 as Macaron-V1, is unambiguous — freeze the base model, train lightweight LoRA adapters per use case, and call the result continual learning. Founder Andrew Chen laid out the reasoning in a KrASIA interview, and the claims are aggressive enough to warrant a close read: state-of-the-art on half its benchmark suite, a preview that hit $10M ARR in two weeks, and LoRA-based reinforcement learning on a trillion-parameter model using a tenth of the usual compute.
This sits at the same fork explainx.ai covered when Microsoft's EvoLib argued the opposite — that useful continual learning can happen entirely without touching weights. Macaron-V1 is the weight-modification camp's most concrete production entry to date.
TL;DR — what people ask after the headline
| Question | Direct answer |
|---|---|
| What shipped? | Two models, July 21, 2026 — Venti (748B) and Tall (50B) |
| Base models? | Venti = frozen GLM-5.2 + 4B LoRA; Tall = Qwen 3.6 |
| Context window? | 2 million tokens on both |
| How does it "learn"? | LoRA adapters trained per use case, base weights frozen |
| Benchmarks? | SOTA on 6 of 12 tests reported by Mind Lab |
| Revenue signal? | Preview version reportedly hit $10M ARR in two weeks |
| Who's behind it? | Andrew Chen (FireAct co-author), founded Mind Lab Oct. 2025 |
| Funding? | Parent Mindverse raised $60M total, incl. $50M Series A led by Meituan's investment arm |
| Infra? | MinT platform manages 1M+ LoRA adapters, ~10x faster loading |
| Independently verified? | Not yet — benchmark and revenue numbers are vendor-reported |
Who is Mind Lab, and why the pedigree matters
Mind Lab was founded in October 2025 by Andrew Chen, co-author of the FireAct paper alongside Shunyu Yao — a lineage that matters because FireAct was early, influential work on fine-tuning LLMs specifically for agentic tool use, not just chat. The team has grown to 30+ employees pulled from xAI, DeepMind, DeepSeek, ByteDance Seed, MIT, and Tsinghua University — a mix of frontier-lab post-training experience and academic research background.
The parent company, Mindverse, has raised $60 million total, including a $50 million Series A in early 2026 led by Meituan's investment arm. That funding signal matters for how seriously to take the roadmap: this isn't a research demo, it's a funded infrastructure bet, similar in spirit to how Adaption Labs' AutoScientist treats automated training as a product category rather than a one-off experiment.
The four continual learning approaches, per Chen
In the KrASIA interview, Chen frames the "how do LLMs learn after deployment" question as a choice among four mechanisms:
- Conversational context — information persists only within a session; it resets every new chat.
- External memory / RAG — facts are stored and retrieved at inference time, the model itself never changes. This is the approach behind systems like TencentDB Agent Memory v2 and Karpathy-style LLM wikis.
- Harnesses and prompt engineering — behavior is steered through instructions, agent skills, and system prompts, without weight or memory-store changes.
- Direct parameter modification via LoRA — the model's weights genuinely change, just in a small, isolated adapter rather than across the full network.
Mind Lab's bet is squarely on option four. Chen's framing is that the first three approaches only simulate learning — the model itself never accumulates competence — while LoRA adapters let a model actually change in response to experience. He calls the result "experiential intelligence": models that get better at a specific use case the more they encounter it, the same way a person improves at a recurring task.
That is a stronger and more falsifiable claim than most "agent memory" pitches, which tend to conflate retrieval with learning. It also puts Macaron-V1 in direct tension with EvoLib's premise that skill libraries evolved at test time — without any weight update — can match or beat retrieval-based memory. Chen would presumably argue EvoLib is still option 2 or 3 in disguise: a fancier external store, not parameter change.
Macaron-V1: Venti and Tall
Released July 21, 2026, in two sizes:
| Model | Total params | Architecture | Context |
|---|---|---|---|
| Venti | 748B | 744B frozen GLM-5.2 base + 4B new LoRA adapters | 2M tokens |
| Tall | 50B | Lightweight, based on Qwen 3.6 | 2M tokens |
The architecture is telling: Venti's LoRA adapters are only ~0.5% of total parameters, yet Mind Lab attributes most of the model's differentiated behavior to that thin layer sitting on top of a frozen GLM-5.2 backbone. That is the practical case for LoRA as a continual-learning mechanism — you are not paying to retrain 744B parameters every time you want the model to specialize.
The preview version's traction numbers
Before Venti and Tall, Mind Lab shipped a June 2026 preview: five LoRA modules of roughly 1B parameters each, attached to GLM-5.1. Mind Lab reports that preview reached $10 million in annual recurring revenue within two weeks of launch — a number worth treating as a strong demand signal rather than a verified independent audit, since it comes from the company itself in a press interview rather than a filed disclosure.
Benchmark results and the Kimi K2 claim
Macaron-V1 scored state-of-the-art on 6 of 12 benchmarks Mind Lab evaluated, with competitive (if not top) results on the remainder. Separately, Chen says the June preview outperformed GPT-5.4 and Claude Opus 4.6 on Mind Lab's internal tests — a claim that, like the ARR figure, has not been independently reproduced in a published third-party evaluation as of this writing.
The more technically interesting data point is from December 2025: Mind Lab ran LoRA-based reinforcement learning on Kimi K2, a trillion-parameter open-weight model, using only 10% of the GPU resources full-parameter RL training would require. If that ratio holds across other large open-weight bases, it is a meaningful cost argument for LoRA-based post-training at frontier scale — comparable in ambition to how Qwen 3.6 and Kimi K3 pushed open-weight scale earlier in 2026, but targeting training efficiency instead of raw parameter count.
MinT: the infrastructure behind per-use-case LoRA
None of this works without infrastructure to manage adapters at scale. Mind Lab's MinT platform, launched January 2026, reportedly manages over 1 million LoRA models and improved adapter loading speed by roughly 10x during both training and deployment.
That number matters more than it looks. If Macaron genuinely trains a distinct LoRA adapter per meaningful use case, adapter-store scale becomes the real bottleneck — closer to a database and caching problem than a modeling problem. Chen's own framing supports this: "We only enable LoRA mode after determining a particular use case req[uires] additional learning" — implying MinT also has to decide, per request, whether the base model alone suffices or a specific adapter should be swapped in.
How Macaron-V1 compares to other continual learning approaches
| Approach | What changes | Weight updates? | Compute cost | Example |
|---|---|---|---|---|
| Macaron-V1 (LoRA) | Small adapter on frozen base | Yes, adapter only | Low relative to full fine-tune | Mind Lab |
| Full fine-tuning | Most/all model weights | Yes, extensive | High — see fine-tuning guide | Traditional SFT/RLHF |
| Test-time skill library | Evolving external library | No | Low, but grows context/retrieval load | Microsoft EvoLib |
| Agent memory hub | Stored traces + retrieval | No | Low, retrieval-bound | TencentDB Agent Memory v2 |
| Prompt/harness engineering | Instructions only | No | Negligible | Agent skills |
None of these approaches are strictly superior across every axis. LoRA-based continual learning changes the model's actual behavior distribution — useful when a task needs consistent, low-latency specialization without a long system prompt. Memory and skill-library approaches stay cheaper to update and audit, since nothing about the model's weights needs review — only the stored text does. Teams picking between them should weigh the same trade-offs explainx.ai covers in fine-tuning vs. RAG vs. prompting: how often does the target behavior change, how auditable does it need to be, and how much does per-adapter compute cost at your request volume.
Limitations and open questions
- Vendor-reported numbers. The $10M ARR figure, the 6-of-12 SOTA claim, and the GPT-5.4/Opus 4.6 comparison all come from Mind Lab's own account in a press interview — none are independently reproduced benchmarks with public methodology as of publication.
- Adapter sprawl and governance. Managing "over 1 million LoRA models" raises the same review questions as any large skill or plugin registry — which adapters are trusted, how are regressions caught, who owns adapter lifecycle.
- Frozen base as a ceiling. LoRA adapters can specialize behavior but cannot inject capability the frozen base model fundamentally lacks — the same ceiling that applies to standard fine-tuning.
- GLM-5.2 dependency for Venti. Venti's ceiling is partly inherited from Zhipu's GLM-5.2 — worth tracking GLM's own trajectory separately from Mind Lab's adapter layer.
- No public leaderboard yet. Unlike open-weight releases that land directly on Hugging Face with reproducible eval harnesses, Macaron-V1's benchmark claims are not yet independently checkable the way Kimi K3 or DeepSeek V4 releases were.
What to watch next
Three things will determine whether Macaron-V1's bet on LoRA-based continual learning generalizes beyond Mind Lab's own numbers: independent benchmark replication, whether MinT's adapter-management approach gets adopted or forked elsewhere, and whether the $10M-ARR-in-two-weeks trajectory holds up as the preview's early adopters convert to sustained usage rather than a launch-week spike. Mind Lab sits in the same wave of Chinese AI startups building infrastructure around open-weight bases (GLM, Qwen) rather than training frontier models from scratch — a pattern worth tracking alongside Zhipu, Moonshot, and the rest of the "Six Tigers" cohort.
Related reading
- What is fine-tuning an LLM? LoRA, QLoRA, SFT, RLHF explained
- Microsoft EvoLib: test-time learning without weight updates
- TencentDB Agent Memory v2: team memory hub
- Karpathy's LLM wiki pattern for agent memory
- Top Chinese AI companies and startups in 2026
- GLM-5.2: Zhipu's response in the China AI race
- Qwen 3.8 Max: open-weight coding and agent frontier
- Adaption Labs AutoScientist: automated model training
Primary source
Figures, benchmark claims, and revenue numbers in this post reflect Mind Lab's own statements as reported by KrASIA and are accurate as of August 5, 2026. None of the performance or revenue claims have independent third-party verification at time of publication — treat them as vendor-reported until an independent benchmark or audit is published.
