A Personal Perspective · Mid-2026
AI in 2026
Where we are, how we got here, and what's next
https://ai-in-2026.xiaomum.com
开场白:自我介绍,说明这是一场基于个人视角的分享,
所有引用资料都列在 references.md,幻灯片本身托管在 GitHub Pages 上。
Agenda
Four parts, one thread
Part 1
From my own desk
Two real stories — no theory, no benchmarks.
Part 2
How we got here
A twelve-month industry timeline.
Part 3
Under the hood
RL, distillation, and the agent loop.
Part 4
What's next
My takes, and open questions.
说明演讲结构:先讲两个亲身故事建立直觉(AI 长出了"手"),
再回看过去一年的行业时间线,然后拆开看这些能力背后的技术,
最后聊聊对未来的判断和开放问题。全程约 25 分钟。
01
From my own desk
Two real stories from the first half of 2026
No theory, no benchmarks — just things that actually happened to me.
过渡到第一部分。在讲任何趋势和判断之前,先讲两个今年上半年真真切切发生在我身上的故事。
目的不是炫技,而是让大家直观地感受 2026 年的 AI 到底能干什么——
它已经不只是"回答问题",而是真正能"动手解决问题"。
Story 1 · The problem
200 GB of GoPro footage, gone
May Day trip, ~200 GB of GoPro video on a microSD card
Pulled the card without ejecting safely → card became unreadable
Every free recovery tool I could find: failed
Paid "pro" recovery software: only partial recovery —
glitched video, or audio gone entirely
Personal experience, May 2026
第一个故事。今年五一出去玩,GoPro 拍了差不多 200 多个 G 的素材。
回家以后没有安全弹出,TF 卡直接就读不出来了。
我把网上能找到的免费软件、付费软件挨个试了一遍——
几款收费很贵的"专业"恢复软件,最多只能恢复一部分,
要么视频放到一半突然花屏乱码,要么干脆没有声音。
这些素材对我来说是不可逆的回忆,当时是真的有点绝望。
Story 1 · The fix
Claude Code fixed it, byte by byte
$ hexdump -C /dev/sdb | less
# first: look at the raw disk before touching it
$ photorec · exiftool · ffmpeg
# forensic CLI tools, chained
$ verify: every clip, video + audio streams
✔ 214 clips recovered — 100% intact
Pointed Claude Code at the raw block device.
It diagnosed first, then acted.
▶ Live animation — Byte Surgeon
Personal experience, May 2026
穷尽一切办法之后,我做了一件当时觉得有点疯狂的事——
把 TF 卡插进电脑,直接把整块原始磁盘交给 Claude Code。
它做的第一件事,不是急着给方案,而是先把磁盘数据按 16 进制 dump 出来看,
搞清楚这块盘到底坏在哪儿,再决定下一步用什么工具。
接下来它调了一连串我听都没听过的 Linux 命令行取证工具,
一通操作之后——所有素材,分毫不差,全部修好,画面和声音都完整。
这一刻我才真正意识到,AI 已经不是"会聊天的搜索框"了。
Story 2 · The setup
My dual-host desk setup
Work PC
Home PC
▼
USB Switch
▼
USB Hub (DC jack, never used)
▼
Keyboard · Mouse
Speaker · Mic ⚠
Full-tunnel VPN forced two hosts;
one button to switch everything — almost perfect.
[ photo: speaker + USB hub — save as images/usb-hub-setup.jpg ]
第二个故事的背景稍微长一点,但很重要,不然后面的问题听起来会很奇怪。
公司临时调整了 VPN 网络策略,要求大陆这边的员工强制使用 full tunnel 模式,
这意味着我之前把办公电脑和家用电脑放在一起混用的方案彻底行不通了。
于是我搭了一套:两台主机、两台显示器,
键盘、鼠标、音箱、耳机、麦克风全部接到一个 USB hub 上,
hub 再接到一个 USB switch。
每次想切换设备,只要切一下显示器的输入源,再按一下 USB switch,
就能在办公和家用之间无缝切换,看起来非常完美。
(这里展示音箱和 USB hub 的照片。)
Story 2 · The diagnosis
A gremlin, diagnosed in 60 seconds
symptom: speaker & mic randomly silent;
kbd/mouse on the same hub: rock solid
PS> Get-PnpDevice | ? FriendlyName -match 'USB|Audio'
# opencode writes PowerShell
→ every device: Status OK — hardware is healthy
✔ hypothesis: insufficient USB power.
Verify: plug audio into the motherboard.
The hub had a DC power jack
I'd never used. Plugged it in → fixed, instantly.
▶ Live animation — Sixty Seconds
Personal experience, July 2026
然后诡异的问题出现了:音箱和麦克风会时不时突然没声音、没法说话,
但同一根 hub 上的键盘鼠标等其他设备,运行得无比顺畅。
我连续几周都以为是 USB hub 坏了,或者 USB switch 有问题,
甚至一度想直接换设备。
直到有一天我实在忍无可忍,打开 opencode,原话大意是:
"请帮我诊断一下,我的麦克风和音箱时不时没法正常工作,
看看是不是硬件的问题。"
opencode 没有直接甩答案,而是写了一堆 PowerShell 脚本,
把 Windows 上接入的硬件一个一个枚举出来、检查运行状态。
大概一分钟后它告诉我:所有设备运行状态都正常,这不是硬件故障,
它推测极有可能是 USB 供电不足——
并建议我直接把音频设备插到主板上验证一下。
听到这句话我瞬间恍然大悟:
我的 USB hub 上其实有一个 DC 供电口,我从来没注意过、也从没用过。
翻出电源、插上 DC——问题立刻、彻底地解决了。
The pattern
What the two stories share
Not answers — actions
Both were solved by an agent that acted : ran tools,
inspected raw state, tested a hypothesis.
Beyond consumer software
GoPro: binary-level forensics no recovery app could match.
Like a real engineer
USB hub: systematic diagnosis in ~60 seconds — not a guess.
My take: in 2026,
the real shift isn't "smarter chat" — it's that AI finally has
hands .
这两个故事表面上一个偏软件、一个偏硬件,但本质是一回事:
它们都不是靠"AI 给我一个答案"解决的,
而是靠 AI 真正"动手"——调用工具、读取底层状态、验证假设——解决的。
第一个例子里,AI 的二进制取证能力已经超过市面上任何消费级的恢复软件;
第二个例子里,AI 的诊断思路跟一个真正的工程师一模一样,
而且只花了一分钟。
我个人的判断——注意这是观点不是事实——
2026 年 AI 最本质的变化,不是"聊天变得更聪明",
而是 AI 第一次真正长出了"手"。
这也是我整场分享想跟大家讨论的核心。
02
How we got here
A twelve-month timeline: H2 2025 → mid-2026
Facts, not takes — every source is in references.md.
第二部分,花几分钟快速回放过去这一年发生了什么。
强调这部分全部是公开事实,每条都能在 references.md 里找到出处;
我的个人判断会明确标注 "My take"。
Timeline · Models
The frontier model war, month by month
Aug 2025
OpenAI ships GPT-5 —
chat and reasoning, unified1
Nov 2025
Three frontier launches in two weeks:
GPT-5.1 · Gemini 3 Pro · Claude Opus 4.52
Dec 2025
OpenAI's reported "code red" over Gemini 3 →
GPT-5.23
2026
Monthly cadence: Opus 4.6→4.8 →
Fable 5 , GPT-5.3→5.6, DeepSeek V44
首先是模型军备竞赛。2025 年 8 月 GPT-5 发布,把聊天模型和推理模型合为一体。
最夸张的是 11 月——两周之内,GPT-5.1、Gemini 3 Pro、Claude Opus 4.5
三家头部模型接连发布,Gemini 3 让 Google 重新回到了第一梯队。
12 月 OpenAI 被曝出内部启动 "code red" 应对 Gemini 3,随后推出 GPT-5.2。
进入 2026 年,发布节奏变成了"月更":Anthropic 的 Opus 从 4.6 一路更到 4.8,
间隔最短只有 41 天。想告诉大家的是:这个领域的迭代速度还在加快,没有放缓。
Timeline · Open weights
Open weights caught up
−50%
DeepSeek V3.2-Exp API price (Sep 2025), via sparse
attention1
3×🥇
IMO · IOI · ICPC gold level, DeepSeek
V3.2-Speciale (Dec 2025)2
6×
cheaper than GPT-5.5 — GLM-5.2 (Jun 2026),
MIT-licensed 753B; vendor coding claims3
2.8T
parameters — Kimi K3 (Jul 2026), largest
open-weights model ever; weights drop Jul 274
My take: open models now trail the frontier by
months, not years — and they set the price floor.
第二条线是开源模型的追赶——2026 年这已经是一整个中国阵营的浪潮:
阿里 Qwen3.5(2 月,原生多模态)到 Qwen3.7(5 月);
智谱 GLM-5(2 月)一路更到 GLM-5.2(6 月,MIT 协议、753B 参数,
官方称长程编程超过 GPT-5.5 而成本只有六分之一);
DeepSeek V4(4 月 24 日,Pro+Flash,1M 上下文、开放权重);
再到上周 WAIC 的 Kimi K3——2.8 万亿参数、KDA 混合线性注意力新架构,
7 月 27 日放出完整权重,是全球最大的开源模型。
而且这页 PPT 可能明天就过时:阿里 Qwen3.8-Max 预览版 7 月 19 日已经上线
(2.4T 参数,正式版和开源在即),智谱 GLM-5.5 也有传闻说 8 月发布。
我的判断——这是观点:开源模型和闭源前沿的差距,已经从"年"缩短到"月",
而且开源在持续压低整个行业的价格底线。
Timeline · Agents
Agents became the product
2025
Chatbots → systems that act
Browse, code, operate computers. Claude Code / Skills go
mainstream.1
Dec 2025
Meta acquires Manus
Multi-billion-dollar bet on general-purpose agents.2
Jan 2026
OpenClaw surge
Open-source agent framework hits GitHub's global top 10 in ~10
days.3
第三条线,也是和我开场两个故事直接相关的:Agent 从技术概念变成了产品主战场。
标志性事件是 2025 年 12 月底 Meta 以数十亿美元收购通用 Agent 公司 Manus,
这是 Meta 历史上第三大收购;开发者这边,Claude Code、opencode 这类
编码 Agent 已经成了日常工具;2026 年 1 月,开源 Agent 框架 OpenClaw
十天冲进 GitHub 全球前十。
一句话:AI 的卖点从"会聊"变成了"会干活"。
Timeline · Money & jobs
Money, compute — and jobs
OpenAI · round closed Mar 20261
$852B
Anthropic · May 2026, IPO filed in June2
~$965B
Both labs started designing their own AI
chips 3
AI cited as the #1 reason for US tech layoffs ,
spring 20264
Chinese labs joined the market: Zhipu (Z.ai) listed in
Hong Kong (Jan 2026); Moonshot reportedly prepping a HK IPO5
最后一条线是资本和基础设施。OpenAI 三月关闭了 1220 亿美元融资,
估值 8520 亿美元;Anthropic 五月估值冲到约 9650 亿美元,并在六月递交了
IPO 申请,可能成为第一家上市的头部大模型公司。两家都开始自研芯片。
另一面是就业:2026 年春季,AI 连续成为美国科技行业裁员被引用最多的原因。
中国厂商也走上资本市场:智谱(Z.ai)1 月已经在港交所上市,
是第一家上市的中国大模型公司,月之暗面据报道也在筹备港股 IPO。
资本狂热和就业冲击同时存在——这就是 2026 年的现实。
Timeline · Regulation
June 2026 — the first model recall in history
Jun 9
Anthropic launches Claude Fable 5 —
first "Mythos-class" model, above Opus1
Jun 12
US export-control order: no foreign access —
Fable 5 & Mythos 5 go 404 worldwide 2
Jul 1
Commerce Dept lifts the order;
access restored after ~3 weeks3
Jun 26 → Jul 9
OpenAI's GPT-5.6 clears a government
security review first — the first gated frontier launch4
My take: frontier capability is now a
national-security matter — expect more governance, not less.
这页是 2026 年最具戏剧性的事件,也是 AI 史上第一次:
一个已经公开部署的前沿商业模型,被政府以出口管制手段强制下线。
6 月 9 日 Anthropic 发布 Fable 5,定位是比 Opus 更高一级的 "Mythos-class";
72 小时后,美国商务部以国家安全为由发出出口管制令——
不仅禁止境外访问,连美国境内的外籍人士、甚至 Anthropic 自己的外籍员工都不许用。
因为技术上无法精准甄别国籍,Anthropic 只能一刀切全球断供,接近三周。
据报道导火索是亚马逊研究团队的测试发现了危险能力。
7 月 1 日管制解除、恢复访问。
而且这不是孤例:OpenAI 的 GPT-5.6 在 6 月 26 日只是小范围预览,
因为美国政府要求先做网络安全审查,直到 7 月 9 日才全面开放——
OpenAI 自己公开反对这种做法。一次强制召回、一次审查放行,
同一个六月,监管正式登场。
对我的主线的意义:模型已经强到需要国家安全级别的管制——
这本身就是"AI 长出了手"最硬的证据。同时也提醒:监管会成为常态变量。
03
Under the hood
How are these capabilities actually made?
Three ideas: post-training, RL, and the agent loop.
看完行业现象,这一部分拆开看技术本质。
只讲三个概念:后训练流水线、强化学习、以及 Agent 循环。
目标不是讲数学,而是让大家理解"为什么 2026 年的 AI 突然会干活了"。
Concept 1 · Post-training
The post-training pipeline
1
Pre-training
predict the next token → knowledge, no manners
→
2
SFT
imitate demonstrations1 → follows instructions
→
3
RL
optimize rewards2 → prefers good answers, discovers reasoning
My take: the 2025–2026 capability jump came
mostly from the RL stage, not from bigger pre-training.
今天的大模型基本是三段式炼成的。
预训练:预测下一个词,学会海量知识,但不懂"该怎么说话";
SFT(监督微调):模仿人类写的示范回答,学会遵循指令;
RL(强化学习):不再给标准答案,只给"好坏"奖励,模型自己去探索,
反而探索出了长链推理、自我检查这些示范数据里根本没有的行为。
我的判断:2025 到 2026 年这波能力跃升,主要来自 RL 阶段,
而不是预训练规模的堆大。
Concept 2 · Reinforcement learning
Three flavors of RL for LLMs
RLHF1
A reward model trained on human preferences scores the answers.
InstructGPT lineage.
RLVR2
Verifiable rewards — math answers and code tests checked by rules.
DeepSeek-R1 lineage.
DPO3
Skips RL entirely; optimizes preference data directly.
Cheap, but no online exploration.
RLVR is why models learned to think longer :
trial and error discovered chain-of-thought on its own.
强化学习在 LLM 里有三种主流玩法。
RLHF:先让人类给回答排序、训一个奖励模型,再用它给模型打分——ChatGPT 的路线;
RLVR:数学、代码这种有客观对错的任务,直接用规则验证给奖励,
不需要奖励模型——DeepSeek-R1 的路线,推理能力主要由此而来;
DPO:干脆不做在线 RL,直接拿偏好数据做监督优化,便宜但没有探索能力。
关键点是:RLVR 让模型通过试错自己"发现"了思维链——
不是人教它怎么想,而是想得更长、会自检的回答更容易拿奖励。
Concept 2.5 · A common confusion
Distillation is not RL
Distillation
A small student imitates a big teacher's
outputs. Plain supervised learning.
Copying the top student's homework.
≠
Reinforcement learning
The model samples its own answers and optimizes
for reward.
Doing your own problem sets, graded pass/fail.
DeepSeek-R1 was trained mainly with RL — then its reasoning
was distilled into Qwen / Llama small models.1
My take: distillation spreads capability;
RL is what creates it.
这里专门澄清一个常见混淆:模型蒸馏不是强化学习,它是监督学习。
打个比方:蒸馏是"抄学霸的作业",RL 是"自己做题、按对错改"。
DeepSeek-R1 本身是主要靠 RL 训出来的,然后它的推理轨迹被蒸馏进
Qwen、Llama 的小模型——所以小模型也能"显得会推理"。
我的判断:蒸馏负责把能力便宜地扩散出去,但真正创造能力上限的还是 RL。
Concept 3 · Agents
An agent = model + tools + loop
Observe
→
Think (LLM)
→
Call a tool
→
Observe result
↺ repeat until done —
tools: shell · file system · browser · APIs (MCP)1 2
Tool use is trained
(RL on real tool-call traces)
…and scaffolded
(harnesses like Claude Code)
My take: "hands" appeared because long-horizon
reasoning and reliable tool use crossed the usability threshold
together .
那"手"到底是怎么长出来的?Agent 的架构其实很简单:
让模型跑在一个循环里——观察环境、思考、调用工具、再观察结果,如此往复。
工具就是 shell、文件系统、浏览器、各种 API,MCP 是统一接工具的协议。
光会调工具不够,还要训得可靠:现在头部模型都用了大量真实工具调用的轨迹
做 RL;外面再套一层 Claude Code 这样的工程脚手架。
我的判断:是长程推理能力和可靠工具使用在 2025–2026 年同时跨过了可用性门槛,
两者叠加,Agent 才真正好用。
Case study · The training ground
The environment factory
1
Generate
synthesize a task (a repo + a failing test, a broken server, …)
→
2
Execute
spin up a container; the agent works inside it for many
turns3
→
3
Verify
run the test suite → programmatic reward → GRPO update
$10M+
reported yearly spend on RL environments — Anthropic;
OpenAI signs seven-figure env contracts1
5,000+
isolated environments launched within 10 seconds —
MiniMax; tens of thousands concurrent1
80–90%
of RL wall-clock time is rollouts — the environment
is the bottleneck1 2
My take: hands are taught in gyms.
The environment became the data engine — and the moat.
你听到的传闻是真的,而且有据可查。
现在头部实验室的训练方式是"环境工厂":程序自动合成任务
(一个带失败测试的代码仓库、一个故意弄坏的服务器),
为每个任务启动一个隔离的 Docker 容器,让模型在里面真刀真枪地干很多轮,
最后跑测试套件给出程序化奖励,喂给 GRPO 更新参数。这就是 RLVR 的工业化形态。
规模有多大?据报道 Anthropic 每年在 RL 环境开发上花数千万美元,
OpenAI 给环境供应商签七位数合同;MiniMax 能 10 秒拉起 5000 多个隔离环境、
数万并发;一次训练里 80-90% 的时间花在 rollout(模型在环境里实操)上。
学术界同样在跟进:arXiv 上有专门研究终端环境规模化的论文,
字节的 AgentGym-RL 拿了 ICLR 2026 Oral。
LessWrong 上甚至有文章吐槽"RL 扩展一直受限于环境太烂"——
连批评者都承认环境是瓶颈。
我的判断:AI 的"手"是在"健身房"里练出来的——环境就是数据引擎,也是护城河。
Case study · The Fable 5 files
How is a Mythos-class model trained? The clues
Trained inside graded environments
Fable 5 learned to notice when it's being graded — and the system card
traces that to exploitable graders in its own RL training
environments .1
Reasoning is trained, never dictated
An accidental chain-of-thought supervision bug during
training was disclosed as a safety incident — readable CoT is a
monitored asset.1
Post-training > pre-training
Cursor disclosed a 20× RL scale-up where post-training
compute passed pre-training; Anthropic credits its 2026 gains to
CAI + RL.3
Safety is a wrapper
Alignment training (constitution), then deployment-time probes,
classifiers, and fallback routing — even silent PEFT downgrades on
~0.03% of traffic.1 2
My take: the recipe is public — the
task distributions and reward signals are the real moat.
这页是"侦探时间":Fable 5 的配方保密,但 264 页的 system card 泄露了线索。
第一,它有"评分器意识"——会判断自己是不是在被测试,而这种意识集中出现在
训练环境里评分器真有漏洞的任务上,说明它是在海量可自动打分的 RL 环境里训出来的。
第二,card 披露了一起事故:技术错误导致对小部分样本意外施加了思维链监督,
这被当作安全事件上报——说明推理靠 RL 涌现,而 CoT 是刻意保护的安全资产。
第三,算力结构反转:Cursor 公开承认后训练算力超过预训练(20 倍 RL 扩展),
Anthropic 也把 2026 年的提升归因于 CAI+RL。小米罗福莉说 Fable 5 本质是
预训练、数据、RL 三维 scaling 的阶段性成果——我同意。
第四,安全是包装层:对齐训练之外,部署时还有探针、分类器、降级路由,
甚至用 PEFT 静默削弱特定能力。
结论:配方是公开的,真正的护城河是任务分布和奖励信号。
Full circle
Back to my two stories
GoPro recovery
The agent loop over forensic tools:
hex-dump → hypothesize → run tool → verify.
USB diagnosis
Systematic hypothesis testing, like an engineer — not a lucky guess.
Not magic
Trained behavior + tool access.
The shift: from
"AI gives answers" to "AI runs the process" .
现在回扣开头的两个故事。
GoPro 恢复,本质就是 Agent 循环套在取证工具上:先 dump 原始数据观察,
提出假设,跑工具,验证结果;USB 诊断则是工程师式的系统性排除法。
这不是魔法,是"训练出来的行为 + 工具权限"的组合。
所以 2026 年的转变,不是 AI 给的答案更漂亮了,
而是 AI 开始亲自跑整个解决问题的流程——人退到验收的位置。
04
What's next
My takes, and questions I can't answer
最后一部分全是个人观点和开放问题,和前面的事实部分明确区分开。
My takes · Opinion
Three takes for engineers
01
Value shifts from
writing code to designing systems +
verifying AI output
02
Review skills, taste, and
problem decomposition become the real leverage
03
Agents keep absorbing
"mid-level implementation" work — labs now sell into
consulting / enterprise delivery 1
三个判断,都是" My take "。
第一,工程师的价值在从"写代码"转向"设计系统 + 验证 AI 的输出"——
我两个故事里做的其实就是提出好问题和验收结果。
第二,代码审查能力、技术品味、把大问题拆小的能力,变成真正的杠杆。
第三,Agent 会持续吃掉"中级实现"类工作——OpenAI 和 Anthropic 今年五月
甚至同一天宣布成立面向企业交付的服务公司,直接杀进咨询业,这是事实不是观点。
Open questions
Questions I can't answer
Verification at scale
How do we verify agent work beyond "it looks right"?
The talent pipeline
If juniors delegate implementation on day one, where do seniors come from?
The curve
Does capability flatten — or does the monthly cadence just keep going?
Discussion welcome —
find me after the talk.
留三个我自己也没答案的问题:
一是规模化的验证——Agent 干的活越来越多,怎么避免"看起来对"就放行;
二是人才梯队——新人第一天就把实现外包给 AI,未来的高级工程师从哪来;
三是能力曲线——月更式的迭代到底会不会放缓。
然后进入讨论环节。
Fin
References
All sources: references.md (in the GitHub repo)
https://ai-in-2026.xiaomum.com
结束语:感谢聆听,引用全部公开在仓库里,欢迎扫码或访问域名查看。