
Macaron V1 treats a model call as the start of an adaptation loop, using a Mixture of LoRA architecture on GLM-5.2 and a native 2 million-token context window. According to woshipm, Mind Lab designed the system so models can continue learning during use, rather than remaining fixed after deployment. That changes the operational question: which user context and corrections should be allowed to reshape a working model module?
The wider push is already visible in infrastructure. A Chinese outlet reports that Boren Zhihui's TOLD stack is built to turn computing power into tiered Token output and offers one-click large-model adaptation. Liang Wenfeng identified continual learning as the bottleneck after agents, woshipm reports. The practical challenge is to separate useful feedback loops from noisy ones, then ask what evidence those loops can produce when they claim to have improved.
The bottleneck moves beyond static inference
The constraint is moving beyond a single model response. Liang Wenfeng identified continual learning as the bottleneck after agents, according to woshipm. That frames the next problem as retaining useful task context and changing behavior from use, rather than only producing a stronger answer at inference time.
- December 2025Mind Lab completed reinforcement-learning post-training for a trillion-parameter model
- end of JuneMind Lab released its model
- JulyMind Lab began commercialization
Mind Lab's Macaron V1 is built around continual learning during use. Its Mixture of LoRA architecture, or MoL, is based on GLM-5.2 and natively supports a 2 million-token context window, woshipm reports. That combination points toward a system that can keep a long task history available while adaptation occurs within the operating process. Context alone is not adaptation.
A parallel engineering track is making static inference less expensive. Boren Zhihui developed TOLD, a Token Oriented Large-scale Distributed architecture that organizes computing power into tiered Token output, according to a report. The company says TOLD offers one-click large-model adaptation alongside a B2B2C multi-tenant model for Tokens and applications. Those are deployment and capacity claims; they do not by themselves show that a system learns from its own work.
woshipm also describes efforts to reduce the cost of long-context serving. Zhipu says glm-5.3-flash cuts activated parameters from 32B to 18B relative to the GLM-4.5 series and nearly halves its layers. Its IndexPool technology is intended to compress cached indexer vectors for a 1 million-token context. The company further claims end-to-end serving performance improved by 3 times on the same hardware.
For practitioners, efficiency remains necessary, but it is a separate question. Cheap access to a long context can support an adaptation loop; it cannot decide what feedback should change model behavior or when that change is safe.
Macaron makes LoRA a persistent working layer
Macaron V1 separates a frozen 744B-parameter GLM-5.2 base model from LoRA modules that can specialize the system's work. Its 748B flagship Venti version contains four 1B LoRA experts: L0 for chat, L1 for personal-life task execution, L2 for coding, and L3 for interface generation. A router selects among those experts in an architecture Macaron calls Mixture of LoRA, or MoL.
This makes the adaptation layer a working component rather than a replacement for the base model. The same product is also available as the 35B Tall version, which woshipm says is trained on Qwen3.6 and intended for local deployment.
Mind Lab's MinT system extends that separation across machines. According to woshipm, executors and learners transfer LoRA adapters rather than entire model weights. Its directory contains more than 1 million adapter entries, each with its own identity and version history. That design makes a large adapter catalog plausible without repeatedly moving the frozen base model.
The available evidence leaves the operational controls unspecified. It does not say what user feedback, task outcome, or correction becomes an adapter update. It also does not identify who approves an update before it enters the directory, what state remains attached to a user or executor, or how an obsolete adapter is audited and retired.
Those omissions matter because routed specialists can make adaptation easier to distribute while making provenance harder to judge. A practitioner considering this pattern needs a rule for accepting updates and a record that connects an adapter version to its source, intended task, and removal decision. MinT supplies identities and version histories; the evidence does not establish the governance process around them.
A robot loop needs more than a personal adapter
Macaron shows why an adaptation loop matters most when a task cannot be settled by a quick one-off response. The woshipm author judges V1 somewhat behind Kimi K3 on complex visual layouts and slow on complex single-turn work because its reasoning chain is long. A small parameter update may help, yet the costly uncertainty remains in completing the task.
InstAdapt frames that uncertainty as a physical AI infrastructure problem. According to the report, its four layers begin with first-person human video, robot interaction data, 3D reconstruction, and hand-object relationship modeling, turning objects, spaces, actions, and contact relationships into Robot-ready data. Another layer reconstructs photos and videos into interactive, editable 3D task environments that can be trained on. The pipeline then carries those physical assets through simulation training, post-training, and real-robot deployment.
The correction must survive contact with the world.
That is a wider loop than a personal adapter. InstAdapt is exploring a unified multimodal world action model that generates actions while predicting resulting visual, state, and contact changes. Its final layer uses generative reinforcement learning and world-model-driven embodied recursive self-improvement. The report notes validation in dexterous-hand manipulation and fine-grained tasks; Shi Ye said preliminary tests found a tactile-visual world model raised success rates by more than 30% in some contact-rich manipulation work. For practitioners, the useful adaptation target is therefore the chain linking an error to new data, a trainable asset, simulation results, and deployment feedback.

Anonymous testing supplies feedback with weak guarantees
Commercial uptake can show that a model has found a route into real work. According to woshipm, Mind Lab released its model at the end of June, began commercialization in July, and reached annualized revenue at the tens-of-millions-of-dollars level within two weeks. Its partnerships include a leading mobile-phone manufacturer, Shokz, and Odyss. MinT also offers OpenAI-compatible and Anthropic-compatible endpoints.
That is market evidence, not proof of a dependable feedback loop.
Anonymous public access supplies a different kind of signal: developers can push a model against unfamiliar tasks before its creator is known. geekpark reports that Ox Alpha appeared on OpenRouter on August 20 with a 1 million-token context window, image and video inputs, tool calling, and free access. Its identity has not been officially confirmed. A community-shared DeepSWE test put it at about 8 of 10 software-engineering tasks, while a larger community retest produced about 63% and was not an officially audited leaderboard.
The test path can itself obscure the result. To obtain 87 evaluable INDUCTION results, Serafim Batzoglou made 551 API calls and encountered repeated empty responses and API errors, according to geekpark. He could not determine whether the failures came primarily from Ox Alpha or OpenRouter's integration chain.
That uncertainty matters when prompts and outputs might become material for adaptation. OpenRouter says Ox Alpha data are retained by upstream providers but not used for training; OpenCode's relevant documentation emphasizes zero data retention. Anonymous testing can reveal useful capability and failure modes, yet it leaves practitioners with weak guarantees about who operates the model, where requests fail, and what happens to the context they supply.
Three routes from model calls to operational learning loops
| Mind Lab: Macaron V1 and MinT | Boren Zhihui: TOLD | InstAdapt: physical AI infrastructure | |
|---|---|---|---|
| Core operating loop | Continual learning during use through LoRA reinforcement learning | Token-oriented distributed computing and inference scheduling | Real data -> Robot-ready data -> 3D physical assets -> simulation training -> post-training -> real-robot deployment |
| Adaptation or improvement unit | LoRA adapters; MinT transfers adapters rather than entire model weights | One-click large-model adaptation | Generative reinforcement learning and world-model-driven embodied recursive self-improvement |
| Context or data captured | Supports a 2 million-token context window | Not covered | First-person human video, robot interaction data, 3D reconstruction, hand-object relationships, visual information, and tactile information |
| Modular architecture | Mixture of LoRA with a router; four LoRA experts for chat, personal-life task execution, coding, and interface generation | Tiered Token output through Token Oriented Large-scale Distributed architecture | Four-layer infrastructure spanning data production, physical asset generation, model training, and robot deployment |
| Primary deployment setting | OpenAI-compatible and Anthropic-compatible endpoints; Tall is intended for local deployment | Consumer Token factories and enterprises' private intelligent-computing clusters | Robot world-model research and development, simulation training, and real-robot deployment |
| Hardware or infrastructure scope | Catalog of millions of adapters | Compatible with Nvidia and multiple domestic GPU architectures; unified management and inference scheduling for heterogeneous GPU deployments at the scale of 10,000 cards | Trainable, interactive, and editable 3D task environments reconstructed from photos and videos |
| Feedback source | Use-time interactions and reinforcement-learning post-training | Not covered | Action outcomes, including visual, state, contact, grasp stability, slippage, jamming, and incomplete insertion |
| Pricing disclosed in sources | Chinese MinT endpoint: input costs 8 yuan per million tokens and output costs 28 yuan per million tokens | Not disclosed in sources | Not disclosed in sources |
Where to turn an AI workflow into an adaptation loop
- You have recurring work that naturally separates into conversation, personal-task execution, coding, and interface generation. Consider routing requests to small task-specific adaptation modules rather than retraining a whole model. Macaron V1 uses four 1B LoRA experts-L0 for chat, L1 for personal-life task execution, L2 for coding, and L3 for interface generation-on a frozen 744B-parameter GLM-5.2 base model.
- Your product can collect meaningful feedback from long-running real-world actions, rather than only one-off prompts. Prioritize a continual-learning loop, but only where the feedback can be tied to outcomes. The source material identifies continual learning as the bottleneck after agents, and describes capability gains from agents' long-term actions and feedback in real environments.
- A task depends on a very large private corpus, long project history, or a repository-wide context. Use a long-context system before assuming that fine-tuning is required. Macaron V1 natively supports a 2 million-token context window, while LongStraw supports reinforcement-learning training with contexts of up to 2.1 million tokens. In one reported test, 4,580 Jike posts totaling 650,000 Chinese characters were submitted in one request.
- You are adapting models across many users, tenants, or deployment sites and moving full model weights would be operationally expensive. Use adapter-based distribution where possible. MinT transfers only LoRA adapters between executors and learners rather than entire model weights, and supports a catalog of millions of adapters. This is a better fit for modular adaptation than repeatedly distributing a full base model.
- You are building a robot or other physical-AI workflow involving grasping, contact, insertion, or other interactions where success can be observed. Build the loop around data capture, simulation, post-training, and deployment-not around text prompting alone. InstAdapt describes a pipeline from real data to Robot-ready data, 3D physical assets, simulation training, post-training, and real-robot deployment; it also incorporates visual and tactile information for grasp stability, slippage, jamming, and incomplete insertion. Its technology has been validated in dexterous-hand manipulation and fine-grained task scenarios.
Choose loops that can prove their own corrections
A workflow should enter an adaptation loop only when it can preserve the relevant context and check a proposed correction against evidence. Long-context prompting may retain material in a single request. Retrieval should identify the source behind an answer. Adapter adaptation needs a test that can reject a bad change, while broader fine-tuning requires an even clearer separation between private learning and shared behavior.
Context alone is not correction.
woshipm's author supplied Macaron V1 with 4,580 Jike posts totaling 650,000 Chinese characters, dating from 2019 onward, in one request. The system rejected a nonexistent post about Swift fill-light code and instead located a related November 11 post. In a huashu-design repository task, it selected issue 47, identified that the skills CLI bug was fixed in version 1.5.19, and updated the README rather than altering code. Those are useful loop tests: can the system show why a premise failed, then recover with the smallest justified action?
Adaptation can be cheaper than retraining, but cheap adaptation is not automatically safe adaptation. woshipm reports that Mind Lab uses LoRA reinforcement learning for results similar to full-parameter fine-tuning without retraining the whole model each time. A cited PEFT paper found modules below 0.5% of base-model parameters could work with one-tenth of full fine-tuning compute. The boundary still matters. According to geekpark, Ox Alpha prompts and outputs are retained by upstream providers, though not used for training. For sensitive work, a Chinese tech outlet's account of Boren Zhihui's enterprise private intelligent-computing clusters points to the practical question: can corrections remain inside the tenant that produced them?
Treat repeated work as a candidate adaptation loop only when failures can be observed and checked. Codebase maintenance, personal knowledge archives, UI prototyping, and simulation-heavy tasks offer feedback that can expose whether a system preserves context, recovers after an error, and improves on the next pass.
For physical tasks, define the signals before deployment. InstAdapt combines visual and tactile information around grasp stability, slippage, jamming, and incomplete insertion, then runs a path from real data through simulation training to real-robot deployment, according to reports. Shi Ye said a tactile-visual world model raised success rates by more than 30% in some contact-rich manipulation tasks. That is a useful bar: measure the failure states your workflow can actually verify, rather than judging a single polished output.
Keep proprietary material out of anonymous or poorly documented systems until their data handling and adaptation boundaries are clear.
For readers outside China
- Availability: Macaron's MinT provides OpenAI-compatible and Anthropic-compatible endpoints. Its Chinese endpoint is mintcn.macaron.xin. Macaron Artifacts is available through the Claude Code plugin marketplace, with a repository at https://github.com/mindverse-ltd/macaron-artifacts. GLM-5.3-Flash is officially online and open source, and can be accessed through Zhipu's open platform, z.ai, and Zhipu's Coding Plan. Tall is intended for local deployment. Whether these services are available outside China is not disclosed in sources.
- Pricing: The Chinese MinT endpoint charges 8 yuan per million input tokens and 28 yuan per million output tokens. Pricing for Macaron's other access routes, local deployment, GLM-5.3-Flash, and InstAdapt is not disclosed in sources.
- Closest Western equivalents: OpenAI API-style integrations; Anthropic API-style integrations; The Claude Code plugin ecosystem; OpenRouter for anonymous or experimental model access
- Data residency: The source material does not cover data residency, storage location, or training use for MinT, z.ai, Macaron Artifacts, GLM-5.3-Flash, or InstAdapt. For the anonymous Ox Alpha test, OpenRouter states that prompts and outputs are retained by upstream providers but are not used for training. OpenCode's relevant documentation emphasizes zero data retention. Those statements should not be generalized to other services.
Sources
- woshipm 200万上下文、外挂四大专家:Macaron V1把LoRA玩成了正式架构 https://woshipm.com/ai/6434304.html
- woshipm 梁文峰看到的大模型下一个瓶颈,已经有团队在解决了 https://woshipm.com/share/6434365.html
- 36kr 36氪首发|上科大团队做具身世界模型基础设施,完成千万美元种子轮融资 https://36kr.com/p/3957651741949056
- woshipm 智谱 5.3-flash 成了新的斩杀线 https://woshipm.com/ai/6455220.html
- geekpark 《有头有脸的大模型公司,集体搞起「匿名公测」》 https://geekpark.net/news/369324
- 36kr 硬氪首发 | 异构智算平台天使轮融资千万,瞄准英伟达和国产GPU算力调度 https://36kr.com/p/3964355065437443
The evidence: 69 facts from 6 Chinese articles
Each line below was extracted from the article it sits under, in Chinese, before any of this was written. The writing is done from these and never from the source prose - that separation is structural, not a promise. How we work.
36kr硬氪首发 | 异构智算平台天使轮融资千万,瞄准英伟达和国产GPU算力调度
- Boren Zhihui completed an angel round of financing worth tens of millions of yuan, with a post-investment valuation of about 150 million yuan.
- The angel round was invested by a first-tier industrial fund focused on AI and AI infrastructure that has also invested in large-model training frameworks.
- Boren Zhihui will use the financing for iteration of heterogeneous intelligent-computing core technologies, development of computing-infrastructure products, and expansion of its core technical team.
- Boren Zhihui was founded in 2026 and is headquartered in Beijing.
- Boren Zhihui CEO Liu Jinzhi previously worked at Intel's Asia-Pacific R&D Center and served as China head of distributed systems software in Silicon Valley.
- Liu Jinzhi was a core member of one of the first global AI startups focused on natural language processing in 2016.
- Liu Jinzhi later participated in building one of China's first Nvidia SuperPod training clusters to support large-language-model development and deployment.
- Boren Zhihui CTO Yang Guang previously led software R&D and system architecture at Siemens Communications, Oracle, IBM, and Huawei Cloud.
- Boren Zhihui's core team includes members from IBM, Iluvatar CoreX, Huawei, and Infinigence.
- Boren Zhihui independently developed the TOLD technology stack, meaning Token Oriented Large-scale Distributed architecture, to optimize computing power into tiered Token output.
- Boren Zhihui's TOLD architecture is compatible with Nvidia and multiple domestic GPU architectures.
36kr36氪首发|上科大团队做具身世界模型基础设施,完成千万美元种子轮融资
- InstAdapt, an embodied intelligence infrastructure company, recently completed a $10 million seed funding round.
- InstAdapt's seed round was jointly invested in by Co-Creation Intelligence, Yunhui Capital, Pudong Venture Capital, and Wuyue Angel, among other institutions.
- Chipai Capital served as the financing adviser for InstAdapt's seed round.
- InstAdapt will mainly use the seed funding for physical AI data infrastructure, embodied world model research and development, and expansion of its core team.
- InstAdapt was incubated by a team from ShanghaiTech University.
- InstAdapt founder Shi Ye is an assistant professor and doctoral supervisor at the School of Information Science and Technology at ShanghaiTech University and heads the YesAI Lab for Trustworthy and General Intelligence.
- Shi Ye has long researched diffusion models, generative reinforcement learning, and embodied intelligence.
- InstAdapt has built a four-layer physical AI infrastructure around Physical AI deployment and robot world-model research and development.
- InstAdapt's first infrastructure layer uses first-person human video, robot interaction data, 3D reconstruction, and hand-object relationship modeling to convert objects, space, actions, and contact relationships into Robot-ready data.
- InstAdapt's second infrastructure layer reconstructs real environments from inputs such as photos and videos into trainable, interactive, and editable 3D task environments.
- InstAdapt describes its pipeline as "real data -> Robot-ready data -> 3D physical assets -> simulation training -> post-training -> real-robot deployment."
- InstAdapt is exploring a unified multimodal world action model that generates robot actions and predicts the visual, state, and contact changes after those actions are executed.
- InstAdapt incorporates visual and tactile information to help models understand grasp stability, slippage, jamming, and incomplete insertion.
- InstAdapt's fourth infrastructure layer is generative reinforcement learning and world-model-driven embodied recursive self-improvement, or RSI.
- InstAdapt has built a technical pipeline spanning data production, physical asset generation, model training, and robot deployment.
- InstAdapt has validated its technology in dexterous-hand manipulation and fine-grained task scenarios.
- InstAdapt was invited to share its technical approach at NVIDIA GTC 2026 and was the only company jointly showcasing physical AI infrastructure technology progress with NVIDIA at the event.
geekpark《有头有脸的大模型公司,集体搞起「匿名公测」》
- On August 20, a model named Ox Alpha appeared on OpenRouter with a 1 million-token context window, image and video input support, tool-calling capability, and free access.
- Ox Alpha was subsequently integrated into coding agents including OpenCode and Hermes.
- Ox Alpha's identity has not been officially confirmed.
- Zhipu AI has not officially claimed Ox Alpha.
- Alibaba's HappyHorse (欢乐马) appeared on Artificial Analysis's Video Arena leaderboard four months before Ox Alpha and temporarily ranked first, ahead of ByteDance Seedance 2.0 and Kuaishou Kling 3.0.
- Alibaba confirmed that HappyHorse came from the ATH innovation team after several days of discussion.
- Pony Alpha launched on OpenRouter in February and was later labeled by OpenRouter as an early test version of GLM-5.
- Xiaomi claimed Hunter Alpha in March as an early test version of MiMo-V2-Pro.
- Elephant Alpha launched in April and was later revealed as Ant Group Inclusion AI's Ling-2.6-flash.
- OpenAI, xAI, and NVIDIA have previously used similar anonymous-testing approaches on OpenRouter.
- To obtain 87 evaluable results in the INDUCTION benchmark test, Serafim Batzoglou made 551 API calls to Ox Alpha and encountered repeated empty responses and API errors.
- OpenRouter states that prompts and outputs for Ox Alpha are retained by upstream providers but are not used for training.
- OpenCode's relevant documentation emphasizes zero data retention.
woshipm梁文峰看到的大模型下一个瓶颈,已经有团队在解决了
- Liang Wenfeng said at an investor exchange that the next bottleneck after agents is continual learning.
- Mind Lab released Macaron V1, whose core architecture is designed to let models learn continually during use.
- John Schulman is an OpenAI co-founder, the author of the PPO algorithm, and the chief scientist of Thinking Machines Lab.
- Fireworks AI is valued at $17.5 billion and can attach hundreds of LoRAs to one base model, dynamically selecting one for each request.
- Together AI recently completed an $800 million Series C round and has made LoRA its default fine-tuning method.
- Macaron V1 uses a Mixture of LoRA architecture, abbreviated as MoL, based on GLM-5.2 and natively supporting a 2 million-token context window.
- Macaron V1's flagship Venti version uses a 744B base model and four 1 billion-parameter LoRA experts for conversation, tool calling, coding, and interface generation.
- In December 2025, Mind Lab completed reinforcement-learning post-training for a trillion-parameter model using one-tenth of the computing power.
- Mind Lab released LongStraw in July, extending the context for reinforcement-learning training to 2 million tokens under fixed computing power.
- Mind Lab's MinT platform transfers only LoRA adapters between executors and learners instead of moving entire model weights, supporting a catalog of millions of adapters.
- Macaron-V1-Preview is based on GLM-5.1, Venti uses GLM-5.2, and the lightweight Tall version is based on Qwen 3.6.
- Mind Lab released its model at the end of June and began commercialization in July.
- Mind Lab has established partnerships with a leading mobile-phone manufacturer, headphone company Shokz, and AI hardware startup Odyss.
- Richard Sutton's new company is called Oak Lab and pursues low-cost, high-efficiency continual-learning models.
woshipm200万上下文、外挂四大专家:Macaron V1把LoRA玩成了正式架构
- Mind Lab released Macaron V1, a model post-trained on GLM-5.2.
- Macaron V1 has 748B parameters, including a frozen 744B-parameter GLM-5.2 base model and four 1B LoRA experts.
- Macaron V1's four LoRA experts are L0 for chat, L1 for personal-life task execution, L2 for coding, and L3 for interface generation.
- Macaron V1 uses a router and calls its architecture MoL, short for Mixture of LoRA.
- Macaron V1 is available in a 748B flagship version called Venti and a 35B version called Tall.
- MinT provides OpenAI-compatible and Anthropic-compatible endpoints.
- The Chinese MinT endpoint is mintcn.macaron.xin, where input costs 8 yuan per million tokens and output costs 28 yuan per million tokens.
- The woshipm author submitted 4,580 Jike posts totaling 650,000 Chinese characters, dating from 2019 onward, in one request to Macaron V1.
- The Macaron Artifacts plugin is available through the Claude Code plugin marketplace, and its repository is https://github.com/mindverse-ltd/macaron-artifacts.
woshipm智谱 5.3-flash 成了新的斩杀线
- Zhipu's model is formally named glm-5.3-flash.
- glm-5.3-flash supports multimodal input and has 321B parameters.
- glm-5.3-flash was offered at a limited-time half-price discount.
- GLM-5.3-Flash is officially online and open source.
- The open-source model can be accessed through Zhipu's open platform, z.ai, and Zhipu's Coding Plan.