Anthropic 开放 MHS 研究预览:让 AI Agent
Anthropic Opens a Research Preview of the Model Hardware Standard (MHS): A Shared Specification for AI Agents to Safely Operate Physical Devices
做物理世界 Agent 的同学必看,MHS 把设备集成从数周压缩到几小时,QuEra 的激光重锁成功率从 58% 飙到 99.3%,赶紧研究下这个规范能不能用到你的场景。
Anthropic has opened a research preview of the Model Hardware Standard (MHS), a shared specification that lets AI agents discover and operate physical devices. The problem it targets is plumbing. A lab bench or factory cell is assembled from vendors that never planned to interoperate, so every instrument ships its own interface and specialists hand-write bespoke translators between each pair. According to Anthropic team, the setup normally takes weeks to months, and that MHS cuts it to hours or minutes.
Anthropic 已开放模型硬件标准(MHS)的研究预览版,这是一项共享规范,让 AI 代理能够发现并操作物理设备。它要解决的问题是“管道工程”。实验室工作台或工厂单元由从未计划互操作的供应商组装而成,因此每台仪器都自带接口,专家们需要为每对设备手工编写定制翻译器。据 Anthropic 团队称,这种设置通常需要数周到数月时间,而 MHS 可将其缩短至数小时或数分钟。
The Integration Tax
集成税
Each instrument ships its own programming interface, so specialists hand-write bespoke translators between every pair. Even once wired together, there is no common way for devices to hand state to an agent or be operated safely by one. Anthropic says setup typically runs weeks to months; MHS reduces it to hours or minutes.
每台仪器都自带编程接口,因此专家们需要为每对设备手工编写定制翻译器。即使连接在一起,也没有通用方式让设备向代理传递状态或由代理安全操作。Anthropic 表示,设置通常需要数周到数月;MHS 可将其缩短至数小时或数分钟。
How it works
工作原理
MHS standardizes the driver — the layer between an OS and a device. It exposes a small primitive set: read (get temperature), write (set temperature), plus discovery, so devices and agents find each other across a network without a translator in between.
MHS 标准化了驱动程序——即操作系统与设备之间的层。它提供了一小组原语:读取(获取温度)、写入(设置温度),以及发现功能,使设备和代理能在网络中相互发现,无需中间的翻译器。
It also carries knowledge code alone does not encode — the weight of a robot arm, for instance. Driver tags let a user write that in natural language, or have an agent interview them about the setup. The driver compiles those tags into a reference file: what a device measures, what can be adjusted, which safety limits are enforced.
它还承载了代码本身无法编码的知识——例如机械臂的重量。驱动程序标签让用户可以用自然语言编写这些信息,或让代理就设置情况对用户进行访谈。驱动程序将这些标签编译成参考文件:设备测量什么、可调整什么、执行哪些安全限制。
Control runs through three mechanisms: the Model Context Protocol, a CLI, and code files. MHS is model-agnostic — any agent harness can reach it via standard protocols.
控制通过三种机制运行:模型上下文协议(MCP)、命令行界面(CLI)和代码文件。MHS 与模型无关——任何代理框架都可以通过标准协议访问它。
Interactive explainer · Figures verified against Anthropic’s MHS announcement · © Marktechpost
交互式说明 · 图表已对照 Anthropic 的 MHS 公告核实 · © Marktechpost
What partners measured
合作伙伴的实测结果
Genentech automated the BCA protein assay across a liquid handler, robotic arm, and plate reader. Claude ran trial transfers of dyed liquid, read absorbance, scored itself against an expert’s plate using RMSE, and converged on ~140 µL/s for water (0.016 RMSE) and 10 µL/s for viscous BSA (0.181 RMSE) — parameters its automation experts confirmed as reasonable.
Genentech 在液体处理机、机械臂和读板机上自动化了 BCA 蛋白测定。Claude 运行了染色液体的试转移,读取吸光度,使用 RMSE 对照专家的板进行自我评分,并收敛到约 140 µL/s 的水(RMSE 0.016)和 10 µL/s 的粘性 BSA(RMSE 0.181)——这些参数得到了其自动化专家的确认,认为是合理的。
QuEra Computing is the sharpest number. A bespoke laser-relock script, built over months by a four-person team, worked about 58% of the time at ~150 seconds per attempt. Handed the same problem through MHS, a four-role agent loop ran unattended overnight and produced a deterministic Python script that recovered the lock 695 times out of 700 — 99.3%, hardest cases in 10–14 seconds against 5–10 minutes for a human. Claude also cut the servo’s residual error from a specialist’s 15.7 mV to 1.55 mV; over a 19-hour run its tune never lost lock, while the expert tune unlocked about 1.6 times an hour (QuEra blog).
QuEra Computing 是最尖锐的数字。一个由四人团队耗时数月构建的定制激光重新锁定脚本,在每次尝试约150秒的情况下,成功率约为58%。通过MHS处理相同问题,一个四角色代理循环在无人值守的情况下过夜运行,并生成一个确定性的Python脚本,在700次尝试中恢复了695次锁定——成功率99.3%,最困难的情况在10-14秒内完成,而人类需要5-10分钟。Claude还将伺服系统的残余误差从专家的15.7 mV降至1.55 mV;在19小时的运行中,其调谐从未失去锁定,而专家调谐大约每小时解锁1.6次(QuEra博客)。
Carnegie Mellon ran dose-response experiments roughly three times faster, orchestrating a liquid handler, plate reader, robotic arm, and cameras across three computers with incompatible interfaces — one with no programmatic interface at all. Driver-writing through to a completed curve, including an autonomous rerun after the agent rejected an R² < 0.9 fit, took about eight hours against the several weeks a vendor setup takes. Six induced fault conditions were all blocked before any device moved.
卡内基梅隆大学将剂量反应实验的速度提高了约三倍,通过协调液体处理器、读板机、机械臂和摄像头,这些设备分布在三台接口不兼容的计算机上——其中一台完全没有编程接口。从编写驱动程序到完成曲线,包括在代理拒绝R² < 0.9的拟合后自主重新运行,整个过程耗时约八小时,而供应商设置通常需要数周。在设备移动之前,所有六种诱导故障条件均被阻止。
At the University of Washington, a PhD student in the Baker and Pinglay labs connected six instruments in under a week, driver-writing included. Tetsuwan Scientific paired MHS with its ResearchOS platform for qPCR pollution profiling. At Janelia, one microscopy rig went from seven programs launched in a fixed order to a single dashboard click.
在华盛顿大学,Baker和Pinglay实验室的一名博士生在不到一周的时间内连接了六台仪器,包括编写驱动程序。Tetsuwan Scientific将MHS与其ResearchOS平台配对,用于qPCR污染分析。在Janelia,一个显微镜设备从按固定顺序启动七个程序简化为单击仪表板。
Key Takeaways
关键要点
- A shared driver spec letting AI agents discover and operate any device with a programmable interface.
- Integration drops from weeks to hours: CMU hit a finished dose-response curve in eight.
- QuEra’s laser relock: 58% at ~150s, to 99.3% across 700 trials, as a deterministic script.
- Model-agnostic and MCP-compatible; safety limits live in the driver, not the prompt.
- Still gated, and still needs supervision — Claude’s physical reasoning has real gaps.
- 共享驱动程序规范,使AI代理能够发现并操作任何具有可编程接口的设备。
- 集成时间从数周缩短至数小时:CMU在八小时内完成了剂量反应曲线。
- QuEra的激光重新锁定:从约150秒的58%成功率提升至700次试验中的99.3%,作为确定性脚本。
- 模型无关且兼容MCP;安全限制存在于驱动程序中,而非提示中。
- 仍受限制,且仍需监督——Claude的物理推理存在实际差距。
Check out the full announcement and apply for the preview. Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.
查看完整公告并申请预览。此外,欢迎在Twitter上关注我们,别忘了加入我们的150k+ML SubReddit并订阅我们的新闻通讯。等等!你在Telegram上吗?现在你也可以在Telegram上加入我们。
Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us
需要与我们合作推广你的GitHub仓库或Hugging Face页面或产品发布或网络研讨会等?请联系我们。
The post Anthropic Opens a Research Preview of the Model Hardware Standard (MHS): A Shared Specification for AI Agents to Safely Operate Physical Devices appeared first on MarkTechPost.
文章《Anthropic开放模型硬件标准(MHS)研究预览:AI代理安全操作物理设备的共享规范》首次出现在MarkTechPost上。
更进一步:量化金融体系
看懂新闻只是起点——沿量化金融路径,把它变成能交付的工程能力