← Writing

ai-weekly · English · 7 min read

🇻🇳 Đọc tiếng Việt

AI Week W27/2026: Smarter Agents Without Retraining

July 2, 2026

Archive · Week 27/2026

Week 27, 2026: Three independent research teams converged on the same architectural bet — agents that adapt and improve without touching model weights. Sakana AI's Fugu Ultra orchestrates GPT-5.5 and Claude together to beat both. Memento-Skills rewrites agent skills in external memory. Huawei Noah's Ark uses experience traces.

Week 27 brought no single "changes everything" release — but a consistent signal from three directions. Three independent research teams, working in parallel, converged on the same architectural bet: agents that adapt and improve without touching model weights. Sakana AI's Fugu Ultra orchestrates GPT-5.5 and Claude together to outperform both. Memento-Skills rewrites agent skills in external memory. Huawei Noah's Ark uses experience traces to improve continuously at inference time. The shared premise across all three: decouple learning from model parameters. That convergence is the clearest architectural signal of the week. Meanwhile, Japan's engineering community is asking a harder question — is generative AI absorbing all of classical ML?


Editor's Pick

Sakana AI's Fugu Ultra Beats GPT-5.5 and Claude by Orchestrating Both

This isn't a story about a new model. It's a story about intelligent orchestration of existing models beating a single larger one.

On July 2, 2026, Sakana AI — a Tokyo-based AI research lab — announced that Fugu Ultra achieves state-of-the-art benchmark results not by training a larger model from scratch, but by dynamically orchestrating both GPT-5.5 and Claude together. The system routes tasks to each frontier model based on capability profiles, then aggregates outputs through a trained fusion layer. The result: it outperforms either constituent model used in isolation, with no model pretraining cost on Sakana's side.

This connects directly to last week's W26 story, where Fugu launched as a meta-model concept. Week 27 delivers sharper empirical evidence: a trained orchestrator can beat the models it orchestrates. And crucially, this isn't hand-coded heuristics — the model selection and output synthesis are entirely learned behavior.

For teams building multi-agent systems, the core design question is shifting. Not "which single model should I use?" but "how do I intelligently compose the models I already have access to?" That reframing — from selection to composition — is the most practically significant takeaway from this week.


This Week's Stories

Global

NVIDIA Nemotron-TwoTower: 2.42x Faster LLM Generation Without Retraining NVIDIA AI · 2 Jul 2026

NVIDIA released Nemotron-TwoTower, an inference optimization technique that restructures the attention mechanism into a two-tower architecture at serving time, achieving 2.42x throughput improvement over standard transformer decoding with no output quality degradation and zero retraining of the underlying model. The technique is model-agnostic and validated across several open-weight LLMs in the 7B–70B parameter range.

Why it matters: A plug-in 2.42x speedup with no training cost materially changes the economics of self-hosted LLM inference — directly relevant to any team optimizing GPU costs and response latency.


Agent-R1: RL Framework That Trains Agents for Complex Real-World Tasks VentureBeat · late Jun 2026

Researchers at the University of Science and Technology of China developed Agent-R1, a reinforcement learning framework that extends RL training for LLM agents beyond the well-benchmarked domains of math and code generation into multi-step, multi-tool tasks requiring sequential retrieval, environment interaction, and error recovery. Agent-R1 shows significant improvements on complex agentic benchmarks compared to supervised fine-tuning and prior RL methods, with particularly strong gains on tasks requiring 5+ tool-call turns.

Why it matters: This extends the RL alignment playbook to the scenarios that actually matter for production agent deployment — not toy math problems but messy, tool-dependent workflows where the environment pushes back.


Memento-Skills: Agents Rewrite Their Own Skills Without Retraining the Base Model VentureBeat · late Jun 2026

A multi-university research team released Memento-Skills, a framework that allows AI agents to autonomously develop, update, and retire procedural skills stored in an external evolving memory rather than encoded in model weights. When an agent encounters a new task or identifies a failing skill, it generates improved skill code and writes it to the skill library without any retraining of the base LLM. The framework achieves top scores on deep research and complex multi-step reasoning benchmarks.

Why it matters: Self-improving agents without retraining costs is a key bottleneck for practical autonomous agent deployment. Memento-Skills offers a concrete architecture for solving it — skills live outside the model, so they can be updated without touching the underlying system.


Huawei Noah's Ark: LLM Agents Learn From Experience With No Fine-Tuning VentureBeat · late Jun 2026

Huawei Noah's Ark Lab demonstrated a structured memory framework that enables LLM agents to dynamically adapt at inference time — no parameter updates, no fine-tuning — by maintaining a persistently updated memory of successful and failed action traces. The system uses the agent's own experience to refine future decisions, achieving continuous performance improvement over time on sequential decision-making tasks.

Why it matters: Together with Memento-Skills, this confirms a convergence: two independent teams from different institutions, in the same week, arrived at memory-driven self-improvement as the practical path to adaptive agents. That's a strong signal — not a coincidence.


From Japan

Is Generative AI Absorbing All of Machine Learning? Qiita · Jun/Jul 2026 — date unverified

A Qiita data scientist examines whether generative AI is absorbing the broader machine learning field — rendering classical ML skills obsolete or recasting them as infrastructure beneath foundation models. The piece surveys which ML disciplines (feature engineering, tabular modeling, time series, causal inference) remain distinctly non-generative and which have been effectively subsumed. Conclusion: the ML practitioner role is bifurcating — foundation model orchestrators on one side, specialized ML engineers handling structured and sensor data on the other.

Why it matters: A grounded, honest landscape read for any DS professional recalibrating their roadmap as LLM-adjacent roles crowd out classical ML job postings.


LLM-Driven Time Series Analysis: Beyond Statistical Pipelines note.com · Jun/Jul 2026 — date unverified

This article challenges the assumption that time series analysis requires specialist statistical models (ARIMA, Prophet, purpose-built deep learning architectures). The author shows how LLM-driven prompt engineering can approximate and in some cases outperform classical approaches on pattern recognition and anomaly detection — especially when labeled training data is scarce. Practical examples include prompt templates that encode domain knowledge previously baked into hand-crafted features.

Why it matters: If the core intuition holds, LLM-first prototyping can compress the experimentation loop for time series problems before committing to a more expensive specialist pipeline.


From LLMs to Physical AI World Models: 2026's Fundamental Shift note.com · Jun/Jul 2026 — date unverified

Hirohisa Arai argues that the fundamental 2026 AI shift isn't about scaling language models further — it's the emergence of physical AI "world models": systems that encode causal, spatial, and temporal structure of the real world to enable embodied reasoning and robotic control. The piece frames LLMs as transitional technology and positions world models (following NVIDIA's and Google DeepMind's recent directions) as the next generational leap, with concrete implications for where AI research investment is moving.

Why it matters: Understanding this framing helps DS/AI practitioners anticipate where compute, tooling, and hiring demand will concentrate over the next 2–3 years.


From Vietnam

Small Language Models: The Missing Piece of the Agentic AI Era Viblo · Jun/Jul 2026 — date unverified

This Viblo article makes the case that Small Language Models (SLMs) are not a compromise but a strategic choice for building production-ready agentic systems. It contrasts SLMs (compact, task-specialized, low-latency) with full-scale LLMs and shows how multi-agent architectures benefit from assigning SLMs to narrow, high-frequency subtasks while reserving LLM calls for reasoning-heavy orchestration steps. A worked example demonstrates SLM-handled tool calls reducing total inference cost by 60–70% versus an all-LLM approach.

Why it matters: For practitioners building agent systems on real budgets, SLM-as-worker-node is a deployable pattern today — not a future consideration. This piece makes that argument concretely in Vietnamese.


Model Context Protocol: Connecting LLMs to the Broader Tool Ecosystem Viblo · Jun/Jul 2026 — date unverified

A Vietnamese-language technical walkthrough of Anthropic's Model Context Protocol (MCP) — the open standard for connecting LLMs to external tools, data sources, and APIs in a standardized way. The article covers the client-server architecture, how MCP servers expose capabilities, and how to implement a basic MCP connector. It positions MCP alongside function calling and RAG as complementary patterns rather than competing alternatives.

Why it matters: MCP is rapidly becoming the de facto interoperability layer for LLM tool integration. Developers building production AI systems need this foundation before the tooling ecosystem grows further around it.


  • Learning without retraining is the week's dominant architectural signal. Three independent systems — Fugu Ultra (multi-model orchestration), Memento-Skills (skill rewriting in external memory), and Huawei Noah's Ark (experience traces at inference time) — converge on the same design: decouple adaptation from model weights. Three research groups, same week, same direction. That's not a trend to watch; it's a trend that's already here.

  • Reinforcement learning extends to real-world agentic tasks. Agent-R1 demonstrates that RL techniques optimized for math and coding benchmarks transfer meaningfully to multi-step, tool-dependent real-world workflows — particularly on tasks requiring 5+ tool-call turns. This is the bridge between RL research and production agent deployment that the field has been waiting for.

  • Japan's engineering community is asking the long-horizon questions. While most English-language coverage focuses on the latest benchmark rankings, Japan's engineers are discussing two harder questions this week: what role does classical ML retain in an LLM-dominated world, and what comes after LLMs — physical AI world models? Japan's technical community is rarely pulled along by short-term hype. When they ask these questions seriously, they're worth treating as long-range direction signals.


Next week, it will be worth watching whether Memento-Skills and Huawei's memory framework attract open-source implementations — and whether Fugu Ultra publishes additional benchmark evidence that multi-model orchestration advantages hold systematically across task types beyond the initial evaluations.

ai-weeklymulti-agentself-improving-agentsllm

Sources

  1. Sakana AI's Fugu Ultra Beats GPT-5.5 and Claude by Orchestrating Both — AlphaSignal
  2. NVIDIA Nemotron-TwoTower: 2.42x Faster LLM Generation Without Retraining — AlphaSignal
  3. Agent-R1: RL Framework Trains LLM Agents for Complex Real-World Tasks — VentureBeat
  4. Memento-Skills: Agents Rewrite Their Own Skills Without Retraining the Base Model — VentureBeat
  5. Huawei Noah's Ark Lab: LLM Agents Learn From Experience With No Fine-Tuning — VentureBeat
  6. 生成AIはMLを飲み込むのか? — Qiita
  7. LLMとプロンプトエンジニアリングが拓くデータ分析の新境地 — note.com
  8. フィジカルAIの世界モデルへ: 2026年AIトレンドの本質的な転換 — note.com
  9. Small Language Models: Mảnh ghép còn thiếu của kỷ nguyên Agentic AI — Viblo
  10. Model Context Protocol: Giao thức ngữ cảnh cho mô hình AI hiện đại — Viblo