<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Yang Goufang</title>
    <description>The latest articles on DEV Community by Yang Goufang (@yang_goufang_23c7ba674984).</description>
    <link>https://dev.to/yang_goufang_23c7ba674984</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3808809%2Fddc4c93b-6669-4563-b8f5-ba711077aed3.jpg</url>
      <title>DEV Community: Yang Goufang</title>
      <link>https://dev.to/yang_goufang_23c7ba674984</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yang_goufang_23c7ba674984"/>
    <language>en</language>
    <item>
      <title>你的 AI agent 不笨，是你餵的 context 不行</title>
      <dc:creator>Yang Goufang</dc:creator>
      <pubDate>Fri, 29 May 2026 07:04:49 +0000</pubDate>
      <link>https://dev.to/yang_goufang_23c7ba674984/ni-de-ai-agent-bu-ben-shi-ni-wei-de-context-bu-xing-5g42</link>
      <guid>https://dev.to/yang_goufang_23c7ba674984/ni-de-ai-agent-bu-ben-shi-ni-wei-de-context-bu-xing-5g42</guid>
      <description>&lt;p&gt;你叫 agent 加一個功能。它很有自信地寫出一段乾淨的程式碼——用的卻是你半年前就拔掉的套件版本、早就放棄的目錄結構，還有一個這個 repo 從來沒用過的 auth 寫法。它能編譯，但每一個重要的地方都是錯的。&lt;/p&gt;

&lt;p&gt;第一個反應，多半是怪模型：「它又在 hallucination 了。」也許吧。但更常見的真相是——以它手上握有的資訊，它做的其實完全合理。問題是，它手上握有的，只是你分心時隨手丟進對話框的一段模糊描述。&lt;/p&gt;

&lt;p&gt;所以這篇想講一個有點刺耳的結論：&lt;strong&gt;多數時候，不是你的 agent 笨，是你餵的 context 不行。&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  為什麼是現在
&lt;/h2&gt;

&lt;p&gt;過去很長一段時間，寫軟體最難的部分是「把程式碼寫出來」。這件事正在悄悄地不再成立。現在 agent 產出可用程式碼的速度，常常比我們 review 的速度還快。瓶頸往上游移動了——移到「把意圖講清楚」這件事上：你到底要什麼、有哪些限制、在「這個」codebase 裡怎樣才叫做好。&lt;/p&gt;

&lt;p&gt;而我們在這件事上做得很差。我們把餵給 agent 的指令、規則、專案知識當成用過即丟的聊天內容：貼一段 prompt、拿到結果、然後那段 prompt 就永遠消失了。我們從來不會這樣對待自己的原始碼——原始碼我們會版控、會 review、會測試。Patrick Debois（當年不小心造出「DevOps」這個詞的人）講的正是這件事：context 就是新的 code，值得用同樣的工程紀律去對待。他把這套還在成形中的方法稱為 &lt;strong&gt;Context Development Lifecycle&lt;/strong&gt;——像對待軟體一樣，去 generate、evaluate、distribute，並在 production 裡持續 observe。&lt;/p&gt;

&lt;p&gt;我覺得這個框架是真的有用。但它也還很早期——比較像一個方向，而不是一條鋪好的路。所以接下來我跳過理論，直接講你明天就能動手做的部分。&lt;/p&gt;

&lt;h2&gt;
  
  
  一、把知識從腦袋（和對話）裡搬進檔案
&lt;/h2&gt;

&lt;p&gt;槓桿最大的一步：別再把專案知識留在自己腦袋裡、留在聊天紀錄裡，把它寫進 agent 會自動讀取的版控檔案。&lt;/p&gt;

&lt;p&gt;多數 agent 工具都支援某種專案指令檔——&lt;code&gt;CLAUDE.md&lt;/code&gt;、&lt;code&gt;agent.md&lt;/code&gt;、&lt;code&gt;.cursorrules&lt;/code&gt;，名字不重要。把它當成一個真正的產物來經營：commit 它、在 PR 裡 review 它，讓它慢慢累積那些「新同事第一天上工會需要知道」的硬知識：&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gh"&gt;# agent.md&lt;/span&gt;

&lt;span class="gu"&gt;## Stack&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Node 20，TypeScript strict mode。不准用 &lt;span class="sb"&gt;`any`&lt;/span&gt;。
&lt;span class="p"&gt;-&lt;/span&gt; Postgres 走 Drizzle。但我們「不」用 ORM 內建的 migration 工具——
  migration 都放在 /migrations，用 npm run db:migrate 跑。

&lt;span class="gu"&gt;## Conventions&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; API handler 一律回傳 Result&lt;span class="nt"&gt;&amp;lt;T&amp;gt;&lt;/span&gt;，不准跨邊界 throw。
&lt;span class="p"&gt;-&lt;/span&gt; 測試用 Vitest，跟原始碼放一起，命名 &lt;span class="err"&gt;*&lt;/span&gt;.test.ts。

&lt;span class="gu"&gt;## Don't&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; 不要沒問過就加新套件。
&lt;span class="p"&gt;-&lt;/span&gt; 不要碰 /legacy——那塊已凍結，正在被刪掉。
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;注意，這些都不是什麼厲害的 prompt 技巧。它們是「事實」——就是你會對一個真人新人講的那些話。好處在於：你只寫一次，往後每一個 session 一開場就是「已經知道」，而不是「重新猜一次」。&lt;/p&gt;

&lt;h2&gt;
  
  
  二、把規則分層，一層只做一件事
&lt;/h2&gt;

&lt;p&gt;別把所有東西塞進同一個巨大的檔案。像拆 config 一樣，按「適用範圍」把 context 拆開。&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;全域規則&lt;/strong&gt;（你做任何事都適用）：你個人的偏好。「講清楚取捨，不要只會附和我。」「能用標準函式庫就不要加新套件。」這些跟著「你」走，跨專案都成立。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;專案規則&lt;/strong&gt;（只限這個 repo）：技術棧、慣例、地雷。這些跟著「程式碼」走。&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;把兩者分開很重要，因為它們變動的速度與理由不同。你的個人風格相對穩定；專案的架構則會一直變。一旦混在一起，每次某個 repo 做了奇怪的事，你就得去動到你那份「universal 偏好」——然後那個怪癖就會悄悄滲進你「所有」其他專案。一個檔案，一件事。&lt;/p&gt;

&lt;h2&gt;
  
  
  三、餵事實，不要餵感覺
&lt;/h2&gt;

&lt;p&gt;當你給 agent 的是「可以查證的東西」而不是「請你回想一下」，hallucination 會明顯下降。&lt;/p&gt;

&lt;p&gt;「用最新版的 React Router」這種講法，等於請模型去把它訓練時看過的所有版本平均一下。換成「我們用 React Router 7，只走 data router，這是我們在用的三種 pattern：[貼上]」，你給的是 ground truth。來源越具體、越「當下」，它能自由發揮（瞎掰）的空間就越小。&lt;/p&gt;

&lt;p&gt;具體來說：&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;版本講死。寫「React 19」，不要只寫「React」。&lt;/li&gt;
&lt;li&gt;任何變動快的東西，直接貼上真正的 API 或文件片段，別賭它記得。&lt;/li&gt;
&lt;li&gt;指向真實檔案：「照著 &lt;code&gt;src/handlers/users.ts&lt;/code&gt; 的 pattern 寫」勝過用文字描述那個 pattern。&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;一個可查證的來源，永遠贏過一段很有自信的記憶。&lt;/p&gt;

&lt;h2&gt;
  
  
  四、把 context 當成有限資源
&lt;/h2&gt;

&lt;p&gt;這一點幾乎每個人都會踩雷。context window 不是無限的，而且——更關鍵的是——「越大不等於越好」。把整個 codebase 全塞進去，不會讓 agent 更聰明；過了某個點，反而更糟：真正相關的訊號被淹沒、模型抓不到重點，輸出品質就這樣悄悄地往下掉。&lt;/p&gt;

&lt;p&gt;留意這些徵兆：回答開始偏離你的慣例、反覆問你早就講過的事、很有自信地改錯檔案。這通常不是模型變笨了——是 context 變雜了。&lt;/p&gt;

&lt;p&gt;實際該做的事：&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;察覺到退化。&lt;/strong&gt; 一個長 session 開始產出變差，那是訊號，不是運氣不好。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;compact 後重開。&lt;/strong&gt; 把真正重要的東西——做過的決定、目前的狀態——濃縮進一個乾淨的新 session。多數工具都有 compact 的機制，刻意去用它，而不是讓一個 session 漫無止境地拖上好幾個小時。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;不要預先塞。&lt;/strong&gt; context 是「這個任務需要時」才加，不是「以防萬一」先放著。一個聚焦的視窗，勝過一個塞滿的視窗。&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;把 attention 想成一份預算，只花在跟「這個任務」相關的東西上。&lt;/p&gt;

&lt;h2&gt;
  
  
  五、告訴 agent 你的環境長怎樣
&lt;/h2&gt;

&lt;p&gt;你的程式碼不是只跑在一個地方。它跑在 local、跑在 CI／integration、也跑在 production——而這幾個環境的差異，往往就是會咬你一口的地方：不同的環境變數、不同的 feature flag、真資料庫對上 mock、某個環境有而另一個沒有的 secret。&lt;/p&gt;

&lt;p&gt;這些 agent「全部都不知道」，除非你寫下來。所以，把它寫下來：&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gu"&gt;## Environments&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; local：用 Docker Postgres，MOCK_PAYMENTS=true，跑種子測試資料。
&lt;span class="p"&gt;-&lt;/span&gt; staging：用真的 Stripe 測試金鑰，schema 跟 prod 一致。
&lt;span class="p"&gt;-&lt;/span&gt; prod：用真的金鑰。永遠不要在這裡跑破壞性腳本。
        migration 一律要走人工核可才能上。
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;光是最後那一行，就可能救你一命——免得 agent 興高采烈地對著 production 跑了一個「清理」腳本，只因為從來沒人告訴它 production 是特別的。&lt;/p&gt;

&lt;h2&gt;
  
  
  六、修種子，不要修果子
&lt;/h2&gt;

&lt;p&gt;這是讓上面所有努力產生複利的那個習慣。&lt;/p&gt;

&lt;p&gt;agent 做錯時，你可以直接修「輸出」——改掉那段程式碼、繼續往下走。這修掉了「這一顆」果子。但壞掉的種子還埋在土裡，明天它會再長出一模一樣的錯。&lt;/p&gt;

&lt;p&gt;槓桿更高的做法，是去修「指令」。agent 用錯了測試框架？別只是把測試重寫一遍——把「我們用 Vitest，不是 Jest」加進 &lt;code&gt;agent.md&lt;/code&gt;。agent 一直去抓某個已棄用的 helper？把它加進「Don't」清單。每一次修正都變成永久的，同樣的錯就不會在往後每個 session 一再出現。&lt;/p&gt;

&lt;p&gt;當下慢一點，一個月下來快非常多。你不再是在修輸出，而是在改善那個「產生輸出的東西」。&lt;/p&gt;

&lt;h2&gt;
  
  
  一點誠實的但書
&lt;/h2&gt;

&lt;p&gt;這一切都還不是定下來的標準。你的 context 檔案還沒有一個 &lt;code&gt;npm test&lt;/code&gt; 能跑、沒有公認的 linter 來檢查指令、也沒有 CI gate 會在你的 &lt;code&gt;agent.md&lt;/code&gt; 跟現實脫節時亮紅燈。Context Development Lifecycle 是一個有用的視角，不是一套完成的工具鏈——工具都還在即時被發明出來，今天某些「最佳實務」，一年後回頭看大概會覺得很土。&lt;/p&gt;

&lt;p&gt;但你不需要等工具鏈成熟，就能把大部分的價值先拿到手。版控的指令檔、分層的規則、可查證的事實、被尊重的 context window，加上「修種子而不是修果子」的紀律——這些今天就能做。它就是「一個一直在跟你作對的 agent」和「一個感覺真的懂你專案的 agent」之間的差別。&lt;/p&gt;

&lt;p&gt;你的 agent，很可能比你的 context 願意讓它表現出來的，要好得多。&lt;/p&gt;

&lt;h2&gt;
  
  
  留一個問題給你
&lt;/h2&gt;

&lt;p&gt;在你「自己」的 agent 指令檔裡，目前最有價值的一行是哪一行——那個讓某個一再發生的錯，從此戛然而止的事實？留言告訴我，好的我想偷來用。&lt;/p&gt;




&lt;p&gt;&lt;em&gt;這篇延伸自 Patrick Debois 的 Context Development Lifecycle——他的原文 &lt;a href="https://tessl.io/blog/context-development-lifecycle-better-context-for-ai-coding-agents/" rel="noopener noreferrer"&gt;Optimizing Context for AI Coding Agents&lt;/a&gt; 是這個想法更完整的版本。&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>productivity</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Your AI Agent Isn't Dumb — Your Context Is</title>
      <dc:creator>Yang Goufang</dc:creator>
      <pubDate>Fri, 29 May 2026 07:04:42 +0000</pubDate>
      <link>https://dev.to/yang_goufang_23c7ba674984/your-ai-agent-isnt-dumb-your-context-is-1ob3</link>
      <guid>https://dev.to/yang_goufang_23c7ba674984/your-ai-agent-isnt-dumb-your-context-is-1ob3</guid>
      <description>&lt;p&gt;You ask your agent to add a feature. It writes clean, confident code — using a library version you ripped out six months ago, a folder layout you abandoned, and an auth pattern you've never used in this repo. The code compiles. It's also wrong in every way that matters.&lt;/p&gt;

&lt;p&gt;Your first instinct is to blame the model. "It hallucinated." Maybe. But more often the model did exactly what it should have given what it knew — and what it knew was a vague paragraph you typed into a chat box while distracted.&lt;/p&gt;

&lt;p&gt;Here's the uncomfortable thesis: &lt;strong&gt;most of the time your agent isn't dumb. Your context is.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this matters now
&lt;/h2&gt;

&lt;p&gt;For years the hard part of building software was writing the code. That's quietly stopped being true. Agents now produce working code faster than most of us can review it. The bottleneck moved upstream — to &lt;em&gt;describing intent&lt;/em&gt;. Telling the agent what we want, what the constraints are, and what "good" looks like in &lt;em&gt;this&lt;/em&gt; codebase.&lt;/p&gt;

&lt;p&gt;And we are bad at this. We treat the instructions, rules, and project knowledge we feed agents as throwaway chat. We paste a prompt, get a result, and lose the prompt forever. We'd never treat our actual source code that way — we version it, review it, and test it. Patrick Debois (the guy who accidentally coined "DevOps") has been making this exact argument: context is the new code, and it deserves the same engineering rigor. He calls the emerging discipline the &lt;strong&gt;Context Development Lifecycle&lt;/strong&gt; — generate it, evaluate it, distribute it, observe it in production, just like software.&lt;/p&gt;

&lt;p&gt;I think the frame is genuinely useful. It's also early — more a direction than a paved road. So let me skip the theory and give you the parts you can actually do tomorrow.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Get knowledge out of your head and into files
&lt;/h2&gt;

&lt;p&gt;The single highest-leverage move: stop holding project knowledge in your head and your chat history, and put it in versioned files the agent reads automatically.&lt;/p&gt;

&lt;p&gt;Most agent tools support a project instruction file — &lt;code&gt;CLAUDE.md&lt;/code&gt;, &lt;code&gt;agent.md&lt;/code&gt;, &lt;code&gt;.cursorrules&lt;/code&gt;, whatever yours calls it. Treat it like a real artifact. Commit it. Review it in PRs. Let it accumulate the hard-won facts a new teammate would need:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gh"&gt;# agent.md&lt;/span&gt;

&lt;span class="gu"&gt;## Stack&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Node 20, TypeScript strict mode. No &lt;span class="sb"&gt;`any`&lt;/span&gt;.
&lt;span class="p"&gt;-&lt;/span&gt; Postgres via Drizzle. We do NOT use the ORM's migration tool —
  migrations live in &lt;span class="sb"&gt;`/migrations`&lt;/span&gt; and run via &lt;span class="sb"&gt;`npm run db:migrate`&lt;/span&gt;.

&lt;span class="gu"&gt;## Conventions&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; API handlers return &lt;span class="sb"&gt;`Result&amp;lt;T&amp;gt;`&lt;/span&gt;, never throw across boundaries.
&lt;span class="p"&gt;-&lt;/span&gt; Tests use Vitest. Co-locate as &lt;span class="sb"&gt;`*.test.ts`&lt;/span&gt; next to the source.

&lt;span class="gu"&gt;## Don't&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; Don't add new dependencies without asking.
&lt;span class="p"&gt;-&lt;/span&gt; Don't touch &lt;span class="sb"&gt;`/legacy`&lt;/span&gt; — it's frozen and being deleted.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Notice these aren't clever prompts. They're &lt;em&gt;facts&lt;/em&gt; — the same things you'd tell a human on day one. The win is that you write them once and every future session starts informed instead of guessing.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Layer your rules — each doing one job
&lt;/h2&gt;

&lt;p&gt;Don't cram everything into one giant file. Split context by scope, the way you split config.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Global rules&lt;/strong&gt; (apply to everything you do): your personal preferences. "Explain trade-offs, don't just agree." "Prefer standard library over new deps." These follow &lt;em&gt;you&lt;/em&gt; across projects.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Project rules&lt;/strong&gt; (this repo only): the stack, the conventions, the landmines. These follow &lt;em&gt;the code&lt;/em&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Keeping them separate matters because they change at different rates and for different reasons. Your personal style is stable; a project's architecture shifts. When you mix them, you end up editing your universal preferences every time one repo does something weird — and that weirdness leaks into every other project. One file, one job.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Feed facts, not vibes
&lt;/h2&gt;

&lt;p&gt;Hallucination drops sharply when you give the agent something checkable instead of asking it to recall.&lt;/p&gt;

&lt;p&gt;"Use the latest React Router" invites the model to average over every version it ever saw in training. "We're on React Router 7, data routers only, here are the three patterns we use: [paste]" gives it ground truth. The more specific and &lt;em&gt;current&lt;/em&gt; the source, the less room there is to invent.&lt;/p&gt;

&lt;p&gt;Concretely:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pin versions explicitly. "React 19," not "React."&lt;/li&gt;
&lt;li&gt;Paste the actual API or doc snippet for anything fast-moving, instead of trusting recall.&lt;/li&gt;
&lt;li&gt;Point at real files: "follow the pattern in &lt;code&gt;src/handlers/users.ts&lt;/code&gt;" beats describing the pattern in prose.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A checkable source beats a confident memory every time.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Treat context as a finite resource
&lt;/h2&gt;

&lt;p&gt;This one trips up almost everyone. The context window is not infinite, and — more importantly — &lt;em&gt;bigger isn't better&lt;/em&gt;. Stuffing in your whole codebase doesn't make the agent smarter; past a point it makes it worse. Relevant signal gets buried, the model loses the thread, and output quality quietly degrades.&lt;/p&gt;

&lt;p&gt;Watch for the tells: answers that drift from your conventions, repeated questions about things you already established, confident edits to the wrong file. That's usually not the model getting dumber — it's the context getting noisy.&lt;/p&gt;

&lt;p&gt;What to actually do:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Notice degradation.&lt;/strong&gt; When a long session starts producing worse results, that's a signal, not a fluke.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Compact and restart.&lt;/strong&gt; Summarize what matters — decisions made, current state — into a fresh, clean session. Most tools have a compaction step; use it deliberately instead of letting a session sprawl for hours.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Don't pre-stuff.&lt;/strong&gt; Add context when it's needed for the task at hand, not "just in case." A focused window beats a full one.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Think of attention as a budget. Spend it on what's relevant to &lt;em&gt;this&lt;/em&gt; task.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Tell the agent about your environments
&lt;/h2&gt;

&lt;p&gt;Your code doesn't run in one place. It runs locally, in CI/integration, and in production — and those differ in ways that bite. Different env vars, different feature flags, a real database versus a mock, secrets that exist in one place and not another.&lt;/p&gt;

&lt;p&gt;The agent knows &lt;em&gt;none&lt;/em&gt; of this unless you write it down. So write it down:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="gu"&gt;## Environments&lt;/span&gt;
&lt;span class="p"&gt;-&lt;/span&gt; local:  uses Docker Postgres, MOCK_PAYMENTS=true, seeded test data.
&lt;span class="p"&gt;-&lt;/span&gt; staging: real Stripe test keys, mirrors prod schema.
&lt;span class="p"&gt;-&lt;/span&gt; prod:   real keys. NEVER run destructive scripts here.
           Migrations are gated behind manual approval.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That last line alone can save you from an agent cheerfully running a "cleanup" against production because nobody told it production was special.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. Fix the seed, not the fruit
&lt;/h2&gt;

&lt;p&gt;This is the habit that makes everything above compound.&lt;/p&gt;

&lt;p&gt;When the agent gets something wrong, you can fix the output — edit the code, move on. That fixes &lt;em&gt;this&lt;/em&gt; fruit. The bad seed is still in the ground, and tomorrow it grows the same wrong thing again.&lt;/p&gt;

&lt;p&gt;The higher-leverage move is to fix the &lt;em&gt;instruction&lt;/em&gt;. Agent used the wrong test framework? Don't just rewrite the test — add "we use Vitest, not Jest" to &lt;code&gt;agent.md&lt;/code&gt;. Agent keeps reaching for a deprecated helper? Add it to the "don't" list. Each correction becomes permanent, and the same mistake stops recurring across every future session.&lt;/p&gt;

&lt;p&gt;It's slower in the moment and dramatically faster over a month. You're not fixing outputs anymore; you're improving the thing that &lt;em&gt;generates&lt;/em&gt; outputs.&lt;/p&gt;

&lt;h2&gt;
  
  
  The honest caveat
&lt;/h2&gt;

&lt;p&gt;None of this is a settled standard. There's no &lt;code&gt;npm test&lt;/code&gt; for your context files yet, no agreed-on linter for instructions, no CI gate that fails when your &lt;code&gt;agent.md&lt;/code&gt; drifts from reality. The Context Development Lifecycle is a useful lens, not a finished toolchain — the tooling is being invented in real time, and some of today's best practice will look quaint in a year.&lt;/p&gt;

&lt;p&gt;But you don't need the mature toolchain to capture most of the value. Versioned instruction files, layered rules, checkable facts, a respected context window, and the discipline to fix the seed instead of the fruit — that's all available today, and it's the difference between an agent that fights you and one that feels like it actually knows your project.&lt;/p&gt;

&lt;p&gt;Your agent is probably better than your context is letting it be.&lt;/p&gt;

&lt;h2&gt;
  
  
  One question for you
&lt;/h2&gt;

&lt;p&gt;What's the single most valuable line currently living in &lt;em&gt;your&lt;/em&gt; agent instruction file — the one fact that stopped a recurring mistake cold? Drop it in the comments; I want to steal the good ones.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;This builds on Patrick Debois's Context Development Lifecycle — his write-up &lt;a href="https://tessl.io/blog/context-development-lifecycle-better-context-for-ai-coding-agents/" rel="noopener noreferrer"&gt;Optimizing Context for AI Coding Agents&lt;/a&gt; is the fuller version of the idea.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>productivity</category>
      <category>webdev</category>
    </item>
    <item>
      <title>AI Weekly — 2026-05-22 to 2026-05-29 | Anthropic's $965B Moment and the Infrastructure Bet</title>
      <dc:creator>Yang Goufang</dc:creator>
      <pubDate>Thu, 28 May 2026 23:04:41 +0000</pubDate>
      <link>https://dev.to/yang_goufang_23c7ba674984/ai-weekly-2026-05-22-to-2026-05-29-anthropics-965b-moment-and-the-infrastructure-bet-l7l</link>
      <guid>https://dev.to/yang_goufang_23c7ba674984/ai-weekly-2026-05-22-to-2026-05-29-anthropics-965b-moment-and-the-infrastructure-bet-l7l</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;Anthropic closed the largest AI funding round in history — $65 billion at a $965 billion valuation — and dropped Claude Opus 4.8 the same day. Three questions follow: what the money actually buys, what the model actually changes, and whether either matters to the infrastructure layer where enterprise AI is actually decided.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  The Funding: What $65B Actually Buys
&lt;/h2&gt;

&lt;p&gt;Anthropic's Series H is not a vote of confidence in a product roadmap. It is a bet on infrastructure positioning&lt;a href="https://news.google.com/rss/articles/CBMiUEFVX3lxTE9FbzhQTWUzSGozVXNfbDYxWWUzTFBZZlpldmQyeDBnSExRdHVMSkJyVVV4OHdlNmx3LVBFcHVXTmJ0ck9TclZvVVlPRnpoZVhW?oc=5" rel="noopener noreferrer"&gt;Anthropic raises $65B in Series H funding at $965B post-money valuation - Anthropic&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMiigFBVV95cUxPSi1XZmpReGJ1X3dWZ0JsQ1BHXzloYm93YjV2N09HX0VlRTFDa2huRE9jX3h6cWxQSDJDdVhnR1Awc01WZDRtVW13Zk50T3dINkJvSS13RkQ3WTM3d2NhRWpZWDV5VEhwV0FQMGRwNEJCdy1idFhIZXBqR3hUX0RHOHdEOU9lZU1GNXc?oc=5" rel="noopener noreferrer"&gt;Anthropic Tops OpenAI to Become the World’s Most Valuable A.I. Start-Up - The New York Times&lt;/a&gt;. At $965 billion post-money, the company is no longer competing solely in the model layer — it is building the substrate other companies build on.&lt;/p&gt;

&lt;p&gt;The timing is deliberate: Claude Opus 4.8 shipped the same day&lt;a href="https://news.google.com/rss/articles/CBMiWkFVX3lxTFBVeFZoaVpfX1hnTlJPS05nQWZYRnB6bUdOc3pzSmlyX3dpN3BleUlVQm53Z3Bxd29JOUw1MENDMWk5VF9CX1VSU0Q2eV9zMXZWNUVOb2V4N2VaUQ?oc=5" rel="noopener noreferrer"&gt;Introducing Claude Opus 4.8 - Anthropic&lt;/a&gt;, and within hours AWS confirmed hosting&lt;a href="https://news.google.com/rss/articles/CBMijwFBVV95cUxORDctNzFXM1FDSHlUa3Ywdk9sVDB4V0tvMmVwamtxUzJfZGlyaXF2eThaT3B2ZWhuUzQ1LUlQZEpTWDZzTVlZdGZlOW5CdE1wNjRRZWRaYldWRHBpWEtUc2ZXM1dmRlpoT3djblB2Q2xaVTY5ekliNUh3N1RCM1l2MTd5Z29TaWdVanAxenpvcw?oc=5" rel="noopener noreferrer"&gt;Claude Opus 4.8 is now available on AWS - Amazon Web Services (AWS)&lt;/a&gt;. What the money buys is multi-cloud distribution, enterprise procurement relationships, and geographic expansion into Korea and Italy&lt;a href="https://news.google.com/rss/articles/CBMiiwFBVV95cUxOX3ZSeUtaVl8zLUdiMHN4ZktEYXVkMFpkTU5icG1SRWR3NVViNVM4WFRSbk5yUzFYbmNTSldGLXNrRmM0dWMtZlh0V21OcGhRS0hvNGl2bEFneFotV1c4LTFLdGRqZi0yZ1oyRlRZUU1aVnlXRWpLM0JqMUhJSldONTc2SGhmTjJpZWpZ?oc=5" rel="noopener noreferrer"&gt;Anthropic appoints KiYoung Choi as Representative Director of Korea ahead of Seoul office opening - Anthropic&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMiYEFVX3lxTE1Mb1dkTXE0WXgzR1BsWERKOVRjUm5feFJOUzJBSnFHTVJZaGQyMDN6ejVVYWluZW9WRmg0QUFhMy10d0lwaHczS2I5WjJpQ1IzMTNnZnZyTTZYVXJENTRaLQ?oc=5" rel="noopener noreferrer"&gt;Anthropic opens Milan office to support Italian enterprise, research, and developers - Anthropic&lt;/a&gt; before OpenAI's EU footprint matures. AWS certification carries genuine weight in enterprise sales cycles — it means Claude is available through existing procurement frameworks that Fortune 500 IT departments already operate under. That is the infrastructure argument, and it does not require speculating about switching costs: the distribution channel is the switching cost.&lt;/p&gt;

&lt;p&gt;For engineering decision-makers: the relevant question is not "is Claude better than GPT?" this week. It is whether Anthropic's infrastructure push — not the model benchmark score — creates durable enterprise relationships that matter in 12–18 months.&lt;/p&gt;

&lt;h2&gt;
  
  
  Claude Opus 4.8: Capability vs. Distribution
&lt;/h2&gt;

&lt;p&gt;Opus 4.8 ships with claims of improved reasoning and agentic performance&lt;a href="https://news.google.com/rss/articles/CBMiWkFVX3lxTFBVeFZoaVpfX1hnTlJPS05nQWZYRnB6bUdOc3pzSmlyX3dpN3BleUlVQm53Z3Bxd29JOUw1MENDMWk5VF9CX1VSU0Q2eV9zMXZWNUVOb2V4N2VaUQ?oc=5" rel="noopener noreferrer"&gt;Introducing Claude Opus 4.8 - Anthropic&lt;/a&gt;. AWS hosting&lt;a href="https://news.google.com/rss/articles/CBMijwFBVV95cUxORDctNzFXM1FDSHlUa3Ywdk9sVDB4V0tvMmVwamtxUzJfZGlyaXF2eThaT3B2ZWhuUzQ1LUlQZEpTWDZzTVlZdGZlOW5CdE1wNjRRZWRaYldWRHBpWEtUc2ZXM1dmRlpoT3djblB2Q2xaVTY5ekliNUh3N1RCM1l2MTd5Z29TaWdVanAxenpvcw?oc=5" rel="noopener noreferrer"&gt;Claude Opus 4.8 is now available on AWS - Amazon Web Services (AWS)&lt;/a&gt; means enterprise access through existing procurement relationships, which is a meaningfully different go-to-market than OpenAI's direct API.&lt;/p&gt;

&lt;p&gt;No independent benchmark data is available at press time. The capability claims should be treated as vendor statements until third-party evaluation is published. The distribution advantage — AWS customers can provision via existing contracts and compliance frameworks — is concrete today.&lt;/p&gt;

&lt;h2&gt;
  
  
  Google Rewrites the Search Box
&lt;/h2&gt;

&lt;p&gt;For the first time in 25 years, Google has changed the search interface itself&lt;a href="https://news.google.com/rss/articles/CBMigAFBVV95cUxPVzZ0WC1UelpJRkNTMldfbkcwaW43MDJ3cXh2elVTLVBhUHZBeTFWYWNXT3NHWjlPcFJ5SjZkOTdOZ21BdEJpeFE5NlE4ZUhpQllLcWEtM0RtTlJhdE9yOUdEajRELTR3ZVFpbXBrbVg3cUVVSGFyc1hTRERfZHhUbg?oc=5" rel="noopener noreferrer"&gt;Powered by A.I., Google Changes Its Search Box for the First Time in 25 Years - The New York Times&lt;/a&gt;. Not a ranking tweak. A fundamental UI change driven by AI integration. This received less coverage than the Anthropic funding round.&lt;/p&gt;

&lt;p&gt;The practical implication: Google is no longer protecting the ranked-list paradigm internally. The search box is becoming an answer engine, which has downstream effects on SEO-driven businesses, content monetization, and how AI summarization interacts with publisher attribution. If you ship products that depend on Google index crawl patterns, this is a structural signal, not a cosmetic one.&lt;/p&gt;

&lt;h2&gt;
  
  
  The AGI Timeline Returns
&lt;/h2&gt;

&lt;p&gt;Demis Hassabis said AGI is 3 to 4 years away&lt;a href="https://news.google.com/rss/articles/CBMihAFBVV95cUxNWXFNTndMc3ZjNTBEYnJoTTR0TW1kQ1VsSDdHRnRpc1pLMl9WbVZMLXFZLW80aWpFOGFyTFlGTGNkaDQzbHg5MDBPTGM1Q1lueDJXUkVRdTlBUVdvVExwVlFray0yZUtCd3VVeXdpSHZhdjZ1VkE2d0prckctY2hCZVQ5aWM?oc=5" rel="noopener noreferrer"&gt;Google DeepMind’s Hassabis: AGI is 3 to 4 years away - Sherwood News&lt;/a&gt;. This is the same person who said it was "5 to 10 years away" in 2023. The update is presented as increased confidence, not new evidence.&lt;/p&gt;

&lt;p&gt;For technical readers: Hassabis is not publishing a methodology. "AGI" remains undefined across the statements made this week — Anthropic, OpenAI, and Google all use it differently. Treat the 3–4 year claim as a narrative instrument, not an engineering forecast.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Job Displacement Fault Line
&lt;/h2&gt;

&lt;p&gt;An ex-Meta scientist publicly called Anthropic's CEO "wrong" on claims about AI-driven job losses&lt;a href="https://news.google.com/rss/articles/CBMib0FVX3lxTE1kNmxnTW9Fc3lrMnV3RHN4WmtQV2VwRGVhdEdGd3RKX25hYXZVWVlNR0JKamFYVVFoMjhXQ1ZXME1hX0JYODUxb0dsSUpFdHBaY3BKZUJ6U0R3dllYRVRtN1R0LUlTWXgxNlo4U25NVQ?oc=5" rel="noopener noreferrer"&gt;OpenAI and Anthropic dig in against each other on AI jobs apocalypse - Axios&lt;/a&gt;. This is not an academic debate. It is a dispute about what the economic data actually shows, and it is happening at the CEO level, which means it is affecting policy positioning and public affairs strategy.&lt;/p&gt;

&lt;p&gt;The uncertainty here cuts both ways. If job displacement is slower than feared, the talent market implications for AI tooling are different than if it accelerates. The Anthropic/OpenAI public disagreement is a proxy for a genuine forecasting failure — nobody has reliable data on this timeline.&lt;/p&gt;

&lt;h2&gt;
  
  
  One Number Worth Tracking
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Company&lt;/th&gt;
&lt;th&gt;Valuation&lt;/th&gt;
&lt;th&gt;Runway Implied&lt;/th&gt;
&lt;th&gt;Notable This Week&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Anthropic&lt;/td&gt;
&lt;td&gt;$965B&lt;/td&gt;
&lt;td&gt;~3–4 years at current burn&lt;/td&gt;
&lt;td&gt;Series H close + Opus 4.8 launch&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;OpenAI&lt;/td&gt;
&lt;td&gt;IPO filing pending&lt;/td&gt;
&lt;td&gt;Public market dependent&lt;/td&gt;
&lt;td&gt;Sam Altman governance friction cited&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The governance issue OpenAI faces — Reuters flagged the "Sam Altman problem"&lt;a href="https://news.google.com/rss/articles/CBMimwFBVV95cUxNcDVqZUpkbHdkWXFXNzZRcmE0LTlFeVpmTHZZaXM1TWM3dTdoUEM2MVZINVp0UnptV0djWTNZbGwtOV9qZWpUUTljOGQ2VDRBVE5nVkc5d2V4ZlRLdHZQeFM1Y3ZZdVVSR1dtMWtudTNDeDVSQlNaYjF6VjhjNml3al9HZVBLbVppQzJsWklBT0h0d1FSTUVTUU0tTQ?oc=5" rel="noopener noreferrer"&gt;Breakingviews - OpenAI’s IPO has a Sam Altman problem - Reuters&lt;/a&gt; — is structurally different from Anthropic's position. A private company with a $965B valuation can defer difficult questions about accountability. A public company cannot. This matters for enterprise customers evaluating vendor stability.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tool, Not Shrine
&lt;/h2&gt;

&lt;p&gt;AlphaProof Nexus solved 9 Erdős problems and proved 44 sequence conjectures for a few hundred dollars in compute&lt;a href="https://news.google.com/rss/articles/CBMiuAFBVV95cUxQNVBNWVpma2VKZUZSb1lEa0N4SEJiTmZ0OV9Jbm13cm9idW1Ea3lSS0ZyZDBEY3lDSHVfdzVoRWZzRm1hRTlkQWY5X1daU3AyVzVXMFhzeGxOUkFDbUI2QlByZVF0R2RRQkJndEhMdFRHVmlaWlRkTi1HY1p5RldVX3NUM3VhSnZfWjM4alpzZHlrTE9CWm5uTWxSVG9xR29jVlRlUWJwR1o3emdhZjlydkV0UDdDUnBS?oc=5" rel="noopener noreferrer"&gt;Google Deepmind's AlphaProof Nexus solves decades-old math problems for a few hundred dollars - the-decoder.com&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMid0FVX3lxTE9EVExRczZFcGZMUkRQdHZubEpBWEFJZjZnQkdKMjZWdHM5RmJTLW1qQVhpV1U5UzlPV1JTUTRBUVlsNEFESnhYcEVwY2hrYXBvdW13N2FrNU5LUnRKMGNoLUVHd04wV003ekwtUGtFaHM2M1NvRnRZ?oc=5" rel="noopener noreferrer"&gt;Google DeepMind's AlphaProof Nexus solves 9 Erdős problems and proves 44 sequence conjectures - Crypto Briefing&lt;/a&gt;. That is a concrete data point when assessing AI math capability in production workflows. The capability is real. The question — as always — is whether it maps to your actual use case.&lt;/p&gt;

&lt;p&gt;OpenAI was named a Leader in enterprise coding agents by Gartner&lt;a href="https://news.google.com/rss/articles/CBMibEFVX3lxTFBKVUUwdmFIQzlrbVJtcmFrWFZ3d0Qtc1Naa21qOWFGM2RmbnJIX2ExT2ZjTERqaXV3eEwxZ0pGVmJwc2dPUUZZcmtCLTNlbjhsLVVqX3VmVXFfb0RlMzJaa21LZTI4YUE5eEYzSw?oc=5" rel="noopener noreferrer"&gt;OpenAI named a Leader in enterprise coding agents by Gartner - OpenAI&lt;/a&gt;. This is a marketing data point, not a technical evaluation. It tells you about OpenAI's enterprise sales motion, not relative code quality.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;This week:&lt;/strong&gt; Anthropic has the capital, the model, the distribution, and the international footprint. OpenAI has the IPO and the governance problem. Google has the distribution and is redesigning its core product around AI. None of these are the same bet. Pick which layer you are playing in.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>tech</category>
      <category>llm</category>
    </item>
    <item>
      <title>AI 週報 — 2026-05-22 to 2026-05-29 | 定價權轉移：Anthropic 估值超越 OpenAI 背後的結構訊號</title>
      <dc:creator>Yang Goufang</dc:creator>
      <pubDate>Thu, 28 May 2026 23:02:37 +0000</pubDate>
      <link>https://dev.to/yang_goufang_23c7ba674984/ai-zhou-bao-2026-05-22-to-2026-05-29-ding-jia-quan-zhuan-yi-anthropic-gu-zhi-chao-yue-openai-bei-hou-de-jie-gou-xun-hao-3i31</link>
      <guid>https://dev.to/yang_goufang_23c7ba674984/ai-zhou-bao-2026-05-22-to-2026-05-29-ding-jia-quan-zhuan-yi-anthropic-gu-zhi-chao-yue-openai-bei-hou-de-jie-gou-xun-hao-3i31</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;本週最重要的訊號不是任何單一模型發布，而是 Anthropic 的估值數字開始超越 OpenAI——當定價權從挑選模型的開發者轉移到定義工作流的平台，商業敘事就進入了下一章。&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  模型與平台：Claude Opus 4.8 登陸 AWS，定價權歸屬出現訊號
&lt;/h2&gt;

&lt;p&gt;本週最大宗的產品新聞是 Claude Opus 4.8 正式在 AWS 上提供&lt;a href="https://news.google.com/rss/articles/CBMijwFBVV95cUxORDctNzFXM1FDSHlUa3Ywdk9sVDB4V0tvMmVwamtxUzJfZGlyaXF2eThaT3B2ZWhuUzQ1LUlQZEpTWDZzTVlZdGZlOW5CdE1wNjRRZWRaYldWRHBpWEtUc2ZXM1dmRlpoT3djblB2Q2xaVTY5ekliNUh3N1RCM1l2MTd5Z29TaWdVanAxenpvcw?oc=5" rel="noopener noreferrer"&gt;Claude Opus 4.8 is now available on AWS - Amazon Web Services (AWS)&lt;/a&gt;。這不是簡單的「又多了一個雲端選項」——AWS 是企業採購事實上的守門人，進入這個管道等於拿到了進入大型企業合規採購流程的正式門票。&lt;/p&gt;

&lt;p&gt;結合 Anthropic 成為全球估值最高 AI 新創、估值突破千億美元&lt;a href="https://news.google.com/rss/articles/CBMiigFBVV95cUxPSi1XZmpReGJ1X3dWZ0JsQ1BHXzloYm93YjV2N09HX0VlRTFDa2huRE9jX3h6cWxQSDJDdVhnR1Awc01WZDRtVW13Zk50T3dINkJvSS13RkQ3WTM3d2NhRWpZWDV5VEhwV0FQMGRwNEJCdy1idFhIZXBqR3hUX0RHOHdEOU9lZU1GNXc?oc=5" rel="noopener noreferrer"&gt;Anthropic Tops OpenAI to Become the World’s Most Valuable A.I. Start-Up - The New York Times&lt;/a&gt;的背景，兩件事必須一起看：&lt;strong&gt;帳面估值是落後指標，AWS 管道承認是領先指標&lt;/strong&gt;。&lt;/p&gt;

&lt;p&gt;Claude Opus 4.8 本身的能力宣稱需要留意「發布 vs 可用 vs 可商用」的三層區分。本次是 Anthropic 直接發布&lt;a href="https://news.google.com/rss/articles/CBMiWkFVX3lxTFBVeFZoaVpfX1hnTlJPS05nQWZYRnB6bUdOc3pzSmlyX3dpN3BleUlVQm53Z3Bxd29JOUw1MENDMWk5VF9CX1VSU0Q2eV9zMXZWNUVOb2V4N2VaUQ?oc=5" rel="noopener noreferrer"&gt;Introducing Claude Opus 4.8 - Anthropic&lt;/a&gt;，而非客戶限定 preview；AWS 頁面同步更新&lt;a href="https://news.google.com/rss/articles/CBMijwFBVV95cUxORDctNzFXM1FDSHlUa3Ywdk9sVDB4V0tvMmVwamtxUzJfZGlyaXF2eThaT3B2ZWhuUzQ1LUlQZEpTWDZzTVlZdGZlOW5CdE1wNjRRZWRaYldWRHBpWEtUc2ZXM1dmRlpoT3djblB2Q2xaVTY5ekliNUh3N1RCM1l2MTd5Z29TaWdVanAxenpvcw?oc=5" rel="noopener noreferrer"&gt;Claude Opus 4.8 is now available on AWS - Amazon Web Services (AWS)&lt;/a&gt;表示可用性已達企業交付標準。與前代 Opus 4 的比較基準尚未有公開的第三方評測數據，工程團隊在選型時不應直接用新舊型號的發布文案做為依據。&lt;/p&gt;

&lt;p&gt;此外，Anthropic 同步發表了「coding agents 在社會科學領域」的應用論文&lt;a href="https://news.google.com/rss/articles/CBMickFVX3lxTFBZOVA5Z3pKZ1JzSHJXaFl0LWdSQlZfZWhGb3AtY1R3MExZRm9KS2dfRmNzTE1XR2VXdjlPMVh6U25SU2JmcXBZQjlnSWRreHM2SGZmTnpQVzRLQVFmVFQyOExiR2o5dFhSb3A2WVBmV2RzQQ?oc=5" rel="noopener noreferrer"&gt;Coding agents in the social sciences - Anthropic&lt;/a&gt;。這屬於研究階段的案例分享，&lt;strong&gt;不是產品發布&lt;/strong&gt;。論文中呈現的 workflow 整合程度、工作流程覆蓋範圍，與實際企業落地所需的穩定性和 tooling 支持，兩者之間還有工程鴻溝。&lt;/p&gt;

&lt;h2&gt;
  
  
  制度性擴張：米蘭與首爾，歐亞企業市場的網絡效應正在成型
&lt;/h2&gt;

&lt;p&gt;Anthropic 本週宣布兩項幾乎同步的機構佈局：米蘭辦公室服務義大利企業、研究機構與開發者&lt;a href="https://news.google.com/rss/articles/CBMiYEFVX3lxTE1Mb1dkTXE0WXgzR1BsWERKOVRjUm5feFJOUzJBSnFHTVJZaGQyMDN6ejVVYWluZW9WRmg0QUFhMy10d0lwaHczS2I5WjJpQ1IzMTNnZnZyTTZYVXJENTRaLQ?oc=5" rel="noopener noreferrer"&gt;Anthropic opens Milan office to support Italian enterprise, research, and developers - Anthropic&lt;/a&gt;；KiYoung Choi 被任命為韓國區代表，首爾辦公室即將開幕&lt;a href="https://news.google.com/rss/articles/CBMiiwFBVV95cUxOX3ZSeUtaVl8zLUdiMHN4ZktEYXVkMFpkTU5icG1SRWR3NVViNVM4WFRSbk5yUzFYbmNTSldGLXNrRmM0dWMtZlh0V21OcGhRS0hvNGl2bEFneFotV1c4LTFLdGRqZi0yZ1oyRlRZUU1aVnlXRWpLM0JqMUhJSldONTc2SGhmTjJpZWpZ?oc=5" rel="noopener noreferrer"&gt;Anthropic appoints KiYoung Choi as Representative Director of Korea ahead of Seoul office opening - Anthropic&lt;/a&gt;。&lt;/p&gt;

&lt;p&gt;這兩個佈局動作傳遞的訊息比任何模型能力更新的公告都更持久：&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;歐洲（米蘭）&lt;/strong&gt;——義大利是歐洲第三大經濟體，也是 GDPR 框架下企業 AI 採購的複雜合規節點。當地法人的存在將合規對話從「境外服務商」轉為「本土責任實體」，這是企業採購進入合規流程的第一道門檻。&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;亞洲（首爾）&lt;/strong&gt;——南韓在半導體供應鏈、手機與消費電子製造、以及汽車業的 AI 整合需求上，存在大量高價值的 B2B 應用場景。辦公室設立是 market entry 的必要條件，不是充分條件；真正的落地進度取決於後續支援與 API 可用性承諾。&lt;/p&gt;

&lt;p&gt;橫向對比：Anthropic 這套「進入主要經濟體設立本土存在」的策略，和 OpenAI 兩年前走向公開市場集資的策略，代表兩種不同的市場滲透模型。前者以機構信任為核心，後者以資金槓桿為核心。&lt;strong&gt;估值數字的差距現在正在檢驗哪個模型更適合制度性市場。&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Altman 的 IPO 問題與 OpenAI 的治理結構風險
&lt;/h2&gt;

&lt;p&gt;本週有兩篇深入報導&lt;a href="https://news.google.com/rss/articles/CBMimwFBVV95cUxNcDVqZUpkbHdkWXFXNzZRcmE0LTlFeVpmTHZZaXM1TWM3dTdoUEM2MVZINVp0UnptV0djWTNZbGwtOV9qZWpUUTljOGQ2VDRBVE5nVkc5d2V4ZlRLdHZQeFM1Y3ZZdVVSR1dtMWtudTNDeDVSQlNaYjF6VjhjNml3al9HZVBLbVppQzJsWklBT0h0d1FSTUVTUU0tTQ?oc=5" rel="noopener noreferrer"&gt;Breakingviews - OpenAI’s IPO has a Sam Altman problem - Reuters&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMioAFBVV95cUxNYlJTM2tDdWVaWEdoNm5xUTNoS3NRS3ZEUDk0QVVIcV9QY3hjMmlUUFV3dUtFVUx2bDVMS3NHLU5sNG1PTlk0aWtYS2pOS2UzeWpFQlBndzJUM3VuVVdVdGtRQTFOLU5wUW1iU2s3cTJ4M2F5a21DdjRIWlpmLTdVTEJHd3JIV1VucHh5NXljWXVwbU5MaXN3Ry1KeXZXWG5G?oc=5" rel="noopener noreferrer"&gt;The big questions OpenAI’s trillion-dollar IPO filing may finally answer - Fortune&lt;/a&gt;聚焦 OpenAI IPO 申請與 Sam Altman 股權結構的問題。核心張力在於：Altman 不持有 OpenAI 股權——這在公開市場是異常結構，投資人評估治理風險時這是不可忽視變數。&lt;/p&gt;

&lt;p&gt;如果 IPO 完成後 Altman 對公司重大決策的影響力缺乏股權基礎的制度性約束，外部董事與投資人的制衡機制將比一般科技公司更為脆弱。監管機構（SEC）在審批時必然會問這個問題&lt;a href="https://news.google.com/rss/articles/CBMioAFBVV95cUxNYlJTM2tDdWVaWEdoNm5xUTNoS3NRS3ZEUDk0QVVIcV9QY3hjMmlUUFV3dUtFVUx2bDVMS3NHLU5sNG1PTlk0aWtYS2pOS2UzeWpFQlBndzJUM3VuVVdVdGtRQTFOLU5wUW1iU2s3cTJ4M2F5a21DdjRIWlpmLTdVTEJHd3JIV1VucHh5NXljWXVwbU5MaXN3Ry1KeXZXWG5G?oc=5" rel="noopener noreferrer"&gt;The big questions OpenAI’s trillion-dollar IPO filing may finally answer - Fortune&lt;/a&gt;。&lt;/p&gt;

&lt;p&gt;從工程決策者的角度，這件事的落地意涵是：當你評估基於 OpenAI API 建構的系統時，你同時在假設這家公司的治理結構在 IPO 後不會發生影響 API 可用性的根本性變化。這個假設不是零風險的。&lt;/p&gt;

&lt;h2&gt;
  
  
  Google 搜尋框 25 年首度改版：核心業務的還擊節奏
&lt;/h2&gt;

&lt;p&gt;《紐約時報》報導 Google 搜尋框在 25 年間首度重大改版，引入生成式 AI 能力&lt;a href="https://news.google.com/rss/articles/CBMigAFBVV95cUxPVzZ0WC1UelpJRkNTMldfbkcwaW43MDJ3cXh2elVTLVBhUHZBeTFWYWNXT3NHWjlPcFJ5SjZkOTdOZ21BdEJpeFE5NlE4ZUhpQllLcWEtM0RtTlJhdE9yOUdEajRELTR3ZVFpbXBrbVg3cUVVSGFyc1hTRERfZHhUbg?oc=5" rel="noopener noreferrer"&gt;Powered by A.I., Google Changes Its Search Box for the First Time in 25 Years - The New York Times&lt;/a&gt;。對比上一個週期（2023 年的 BARD 緊急發布），這次是正式產品整合而非失敗回應。&lt;/p&gt;

&lt;p&gt;這則新聞的戰略意涵不在於「Google 終於做 AI 搜尋」——那已經是兩年前的判斷；而在於&lt;strong&gt;時程&lt;/strong&gt;：從慌亂緊急應答到正式產品整合，Google 用兩年穩住了核心業務的 AI 升級節奏。這代表搜尋這種高流量、廣觸及的產品的 AI 整合，已經進入可工程化、可維運的階段，不再只是口號或實驗。&lt;/p&gt;

&lt;p&gt;對企業決策者言：如果你的產品策略涉及資訊獲取、文件摘要或知識管理，Google 這次改版代表「AI-first 搜尋」已成為標配功能，未來三年的差異化將不在於「有沒有 AI 搜尋」，而在於「誰能做出更高價值的垂直整合」。&lt;/p&gt;

&lt;h2&gt;
  
  
  信仰與模型：Anthropic 的非技術公關戰線
&lt;/h2&gt;

&lt;p&gt;本週有一個不尋常的新聞維度：Anthropic 共同創辦人 Chris Olah 公開論述教皇良十四世通喻「Magnifica humanitas」&lt;a href="https://news.google.com/rss/articles/CBMibkFVX3lxTFA1UGI4bzVyUmNNQURqVFpBZ0tkNjNyMy1GLWxwTXpBSGJzZEpKcTUycEFkVURaeDlkR3lodUpOY1pmN01YdE1wNkFSNTdTRG5keWZSb2tPTjd5SWpFVlFRdkZKTUFBcHAtZGpYdmVR?oc=5" rel="noopener noreferrer"&gt;Anthropic co-founder Chris Olah's remarks on Pope Leo XIV's encyclical "Magnifica humanitas" - Anthropic&lt;/a&gt;，隨即《科學人》報導 Anthropic 請宗教思想家參與塑造 Claude 的方向&lt;a href="https://news.google.com/rss/articles/CBMivgFBVV95cUxQalBxVWVVOUtFS0tobHRYekxHMFRRcmdYbEUzMTRJVGxmV0ItMnMxS3hYcGRKQXJvU3RhQlZ0SWxzc2hJdVBHN2M5OFVtQmdhZWZuZ3JnUjdWVlVncnRLZXdQWWd0QkNkWmdYS3N0V1hXcFBLcmtnWDdZY2FmSWxMZ0tpYzBpaEhDdDJMVWlDZkg4VHo0bEhucGV5dy04T2d2X0lrSjRsakJjeHNyMjdYOWgxN1d6RkF5OUJDM3VR?oc=5" rel="noopener noreferrer"&gt;Anthropic asks religious thinkers to help shape Claude as pope warns about AI - Scientific American&lt;/a&gt;。&lt;/p&gt;

&lt;p&gt;這不是技術新聞，但其戰略意圖清晰：當 AI 模型的社會影響力進入制度性監管階段，論述話語權的爭奪就和模型能力同等重要。這個「讓宗教思想家參與 AI 倫理」的框架，與 OpenAI 強調安全與對齊的路線有重疊，但切入角度不同。&lt;/p&gt;

&lt;p&gt;從實務觀察：這類非技術論述會影響監管機構的立法方向。立法者在技術細節上依賴業界自我約束時，提供框架的廠商將獲得不成比例的制度影響力。&lt;strong&gt;關注監管動態的決策者必須把這種「倫理外交」視為企業風險評估的一環。&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  本週橫向對比
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;事件&lt;/th&gt;
&lt;th&gt;主要意涵&lt;/th&gt;
&lt;th&gt;落地階段&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Claude Opus 4.8 登陸 AWS&lt;/td&gt;
&lt;td&gt;企業管道合規門票到手&lt;/td&gt;
&lt;td&gt;可商用&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Anthropic 估值超越 OpenAI&lt;/td&gt;
&lt;td&gt;機構信任導向的商業模型獲市場確認&lt;/td&gt;
&lt;td&gt;商業階段&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;米蘭與首爾辦公室設立&lt;/td&gt;
&lt;td&gt;歐亞制度性市場進入策略啟動&lt;/td&gt;
&lt;td&gt;進入階段&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Google 搜尋框改版&lt;/td&gt;
&lt;td&gt;搜尋巨頭完成核心業務 AI 整合&lt;/td&gt;
&lt;td&gt;可用&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;OpenAI IPO 結構性風險&lt;/td&gt;
&lt;td&gt;治理問題影響 API 長期可用性假設&lt;/td&gt;
&lt;td&gt;制度風險&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Papal 倫理框架參與&lt;/td&gt;
&lt;td&gt;監管話語權競爭進入新維度&lt;/td&gt;
&lt;td&gt;論述階段&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  結語
&lt;/h2&gt;

&lt;p&gt;本週的底層訊號不是新模型能力，而是「誰在控制工作流」這個問題的答案正在形成：Anthropic 的機構滲透策略與 OpenAI 的公開市場路徑，正在測試制度性採納與純市場邏輯兩種不同的滲透模型。實際結果還需要至少兩個季度的營收數據才能確認。&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;對的工程決策&lt;/strong&gt;：本週最值得追蹤的不是 Opus 4.8 的 benchmark，而是同一財報季內兩家公司營收增速的差距——這才是進入企業預算審批流程的實際起點。估值是落後指標；營收增速差距才是領先指標。&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>tech</category>
      <category>llm</category>
    </item>
    <item>
      <title>AI Weekly — 2026-05-15 to 2026-05-22 | The Agentic Inflection Is Real, But the Enterprise Gap Is Wider Than Ever</title>
      <dc:creator>Yang Goufang</dc:creator>
      <pubDate>Fri, 22 May 2026 07:15:34 +0000</pubDate>
      <link>https://dev.to/yang_goufang_23c7ba674984/ai-weekly-2026-05-15-to-2026-05-22-ipo-fever-meets-the-agentic-era-36if</link>
      <guid>https://dev.to/yang_goufang_23c7ba674984/ai-weekly-2026-05-15-to-2026-05-22-ipo-fever-meets-the-agentic-era-36if</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;The agentic AI wave is real. The infrastructure for enterprises to actually run it at scale is not — and that gap is now the only story that matters.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Google I/O: Agentic Gemini Ships, Finally
&lt;/h2&gt;

&lt;p&gt;Google's I/O this week delivered the most concrete agentic AI release since the initial ChatGPT wave. Gemini is now persistently aware, can operate in the background without prompts, and maintains memory across sessions&lt;a href="https://news.google.com/rss/articles/CBMijAFBVV95cUxNVGxlcDl0VnlkNWYzdUcwSTkyM0FBOFNUUGpkWjdRV0Zmcmp5cjJQa0VwX3lqamY2ZXRFQlBMSEt6ZkxVd2FMN2sxZHd2ZG1HeVkycTAwX0dHREJEMmFYU09RM2JzaUppQjhsMTNJU00xUk4yTkF3cGxEYjUtclc1M2NWWUQ4M1hpWGRNOQ?oc=5" rel="noopener noreferrer"&gt;The Gemini app becomes more agentic, delivering proactive, 24/7 help - blog.google&lt;/a&gt;. The company called it "the agentic Gemini era"&lt;a href="https://news.google.com/rss/articles/CBMibEFVX3lxTFBQeDE4MmRwaEtnQUE4aWdHVENxbkpGWDZFRWhuWUdkRjZnNjhsUGtvVk4zYnc0NXdUcTJaOG5jV3piVHdBMjJock5JdVBPOWtuR2ZUMW5hUjZyNXl4RW5DSWpYZGRsUXpOcExBVA?oc=5" rel="noopener noreferrer"&gt;I/O 2026: Welcome to the agentic Gemini era - blog.google&lt;/a&gt; — and for once, the PR framing is accurate rather than aspirational.&lt;/p&gt;

&lt;p&gt;The capability shift: Gemini moves from reactive retrieval to proactive task management. It can monitor your calendar, initiate research, draft communications, and execute multi-step workflows without being asked at each step. This is the "always-on AI assistant" that has been promised for two years — delivered at consumer scale by the one company with the distribution to make it stick.&lt;/p&gt;

&lt;p&gt;Also notable: Google unveiled Omni, a world model for AI-generated video with advanced temporal consistency&lt;a href="https://news.google.com/rss/articles/CBMiiAFBVV95cUxOV2JmNkhPV3BrVW5GZ00zMlJTUUJJVnJyOXd1RndQbEktdlVGaWRMSjJXbnlSLW5Hb052U3kxU1dhaEI2OTF6Y1lPQzFWOS1FR1hSeW0xMVZETVBXcG5BUUhJY3RPeUhQbHRlN0taZGp2dER4dmduQlhCc3hxQkNzdGdfYnYyY3Rz?oc=5" rel="noopener noreferrer"&gt;Google debuts new Omni world model at Google I/O with advanced AI video capabilities - mashable.com&lt;/a&gt;. Free tier access to new Gemini features was confirmed&lt;a href="https://news.google.com/rss/articles/CBMiekFVX3lxTE82RWNBcG5EbnJJbnZCUGg3Rnh4YXRKTWFMZVV4M1FNM0ZmZXJXVzBQQmRUUnJoRmo0UFZRRHVIbG5reW9MMGNwdnhQQjg4RnoxUXN4TUhRX1R1V19mSXFJeml1TkxQcmQzeHBLX0hyZE5PUEFxazNmcGlB?oc=5" rel="noopener noreferrer"&gt;Every new tool and AI model from Google I/O you can try for free - mashable.com&lt;/a&gt;. These are distinct capability layers — consumer agentic AI shipping now, foundation model research shipping later — and conflating them is exactly the error that leads to overhyped enterprise timelines.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What this means for decision-makers:&lt;/strong&gt; If your organization has Google Workspace exposure, the agentic Gemini rollout is already in your users' hands. The governance question has arrived before most enterprises had a policy to answer it.&lt;/p&gt;

&lt;h2&gt;
  
  
  OpenAI: IPO Filing and Internal Realignment
&lt;/h2&gt;

&lt;p&gt;OpenAI filed confidentially for an IPO as early as Friday, May 22&lt;a href="https://news.google.com/rss/articles/CBMi0AFBVV95cUxPbUNPM3RKdnF0aklKak9TejBpS0R6Q2s5R1VENnFjS0R4Ui0wbEZ5enhOWjBlMFBlUzUwVnZPN3pvRzJzaWxmb3cxdDhpTHhfMDBlOUNCVE95N19XUGthMEdLN2RzYVhVc3lkTEpDLWRRSWJYdE9HYWZ4bFdHdlB1Nnh0SFdYS3ZqU3p0R2l6dGIzZHJJTVV4Z1N3eURET29lejIwbkEyUXNvb1U2OUdFMDdkeW1HeUZxcnlOUDh4dGFKV0Zqam5QMFpXOTE3NXNj?oc=5" rel="noopener noreferrer"&gt;OpenAI Could Confidentially File For IPO As Soon As Friday, Report Says - Forbes&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMibkFVX3lxTE1qcklkTzJFdzZvREs4Ukc2SWM1X1J2dVE1MTUxcU90a1N1NUFWR3ZtOWt6SFZKekthZ2huSlpXRnJ1TDViY1NlcWQ2NUMxaU9tcHUzLUVhRnl6R0pkR1plZHhPVW5WWEhfSTVJZEhn?oc=5" rel="noopener noreferrer"&gt;OpenAI Prepares to File for an I.P.O. in Coming Weeks - The New York Times&lt;/a&gt;. This is not a product announcement — it is a structural inflection point. Going public forces financial disclosure, establishes shareholder accountability, and replaces nonprofit governance turbulence with public-market discipline.&lt;/p&gt;

&lt;p&gt;The filing follows a week of visible internal reorganization: Greg Brockman officially took control of OpenAI's product organization&lt;a href="https://news.google.com/rss/articles/CBMicEFVX3lxTE5OX1BRenk3Q2ZSS1FDclA4aDh4Wmd0RzJINW5najZ0RHo2NUVDbFZsMUV3U0djcV9NLVdoR25XalB6WE5zVGxsemdId1hMOVN3X0ZzVXkwLTJuM2NleHBWNGNWUjhVOHJDUDlxUEhrQXo?oc=5" rel="noopener noreferrer"&gt;Greg Brockman Officially Takes Control of OpenAI’s Products in Latest Shake-Up - WIRED&lt;/a&gt;, consolidating technical and product sides under one leader after years of governance instability. The Malta partnership — providing ChatGPT Plus to all citizens&lt;a href="https://news.google.com/rss/articles/CBMiZ0FVX3lxTE9YVndPb3VQUlhvZ3F0SFl3dGxJX1BPUnFNZUpiMzFZaEVYQkp1elJMcHRYNWJUTVZYTzYtb0RBLVpLZ1dXek5aRmlGeERyZHE2bG5QQ3NRQ3FxM3FRTnN6SlFZS2tDYjg?oc=5" rel="noopener noreferrer"&gt;OpenAI and Malta partner to bring ChatGPT Plus to all citizens - OpenAI&lt;/a&gt; — functions as both a public-relations anchor and a national-scale deployment test.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Engineering read:&lt;/strong&gt; IPO filing does not change API capabilities or pricing. But it changes vendor risk calculus. Evaluate your OpenAI contract terms with exit clauses that account for structural ownership changes.&lt;/p&gt;

&lt;h2&gt;
  
  
  Enterprise AI: Deals, Not Demos
&lt;/h2&gt;

&lt;p&gt;Enterprise deployment announcements this week confirm that 2026 is the year AI integration moved from pilot budgets to operational line items.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Dell + Codex&lt;/strong&gt;&lt;a href="https://news.google.com/rss/articles/CBMia0FVX3lxTE1JQ0otU0wtSnVTb3p3RUo3RGFwcXhzMEs5ell1ZU9LeF92REQ0WWpYZXRNR3dON0ROdVVmako1V29YZWUzN0Z3ajBINldtc3lGczRBOUh6OFZ0RWJxc3V1MTk4eUlZUnUxdnZB?oc=5" rel="noopener noreferrer"&gt;OpenAI and Dell Technologies partner to bring Codex to hybrid and on-premises enterprise environments - OpenAI&lt;/a&gt;: OpenAI bringing Codex to hybrid and on-premises environments addresses the data residency concern that has blocked enterprise AI adoptions in regulated industries. Proprietary codebases no longer need to leave the building.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Databricks + GPT-5.5&lt;/strong&gt;&lt;a href="https://news.google.com/rss/articles/CBMiTEFVX3lxTE1Oa01kT09iaklIZlZRMEFJZXNCdTM3azhlc1NuVloyVm9nR054SWJBaWxqdTg5aV9WNDRpeFp3REg5dTRseDlUSXhzd20?oc=5" rel="noopener noreferrer"&gt;Databricks brings GPT-5.5 to enterprise agent workflows - OpenAI&lt;/a&gt;: Enterprise agent workflows now have a native path into the Databricks data lakehouse ecosystem. The integration matters because Databricks is where enterprise data lives — putting GPT-5.5 at the data layer rather than the API layer changes the latency and cost profile for data-intensive workflows.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;BMS + Anthropic&lt;/strong&gt;&lt;a href="https://news.google.com/rss/articles/CBMivAFBVV95cUxNcFNWdnVCeV9sRFRkQ2FxLUZDXzlxQWlObGgyMXlJTkdsN3NtUzFFWlY1ZjgzdUlVdEJQX2Q1d3BYVW1rdDZyZVIzcmNTSy01OExudVZtdXRzU0lkU1NVNjlIN0k4T21Rb0VFelJJY0lza0Vxa1FRaWhxQ3RxaFlCRHJUWjF6a2VYOGJPSHoxRHhKU0FrT0lHSGMzcTM4d1dXSjFLZ1NJaXlsS25LYl91ZHFfeFJoMFh1TVZncw?oc=5" rel="noopener noreferrer"&gt;BMS taps Anthropic’s Claude for enterprise-wide AI adoption to speed R&amp;amp;D, global workflows - Fierce Pharma&lt;/a&gt;: Bristol-Myers Squibb deploying Claude for enterprise-wide R&amp;amp;D workflows is high-stakes validation in one of the most regulated industries. If this succeeds, expect rapid competitive imitation in biotech and healthcare.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Anthropic + Cloudflare Managed Agents&lt;/strong&gt;&lt;a href="https://news.google.com/rss/articles/CBMiYkFVX3lxTE52WF95M3JQX2VQYU9LSnB6ZjgtbTVhZW9pbFEyZEVRaHdNTFVzYzZkMEtBbks0QUpIdk9DZFdEX05ENkVraUZ1dWVjZVlMTlRIVk8xT0hJdkJPeFBkTVB2YUZB?oc=5" rel="noopener noreferrer"&gt;Anthropic's Code with Claude Announces Managed Agents, Proactive Workflows, Capability Curve - infoq.com&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMiX0FVX3lxTFBacXJVMnl1SmVCN2t2c2VNM19xTlVjdzg4eU9OcDZzcUM3X1RxeGNyUlRYVnhxLUZpTDZMV3hEbmtweUZmOGd2ZkxqZGNwdGxXRmZnblpPSWU0amptZDlv?oc=5" rel="noopener noreferrer"&gt;Announcing Claude Managed Agents on Cloudflare - The Cloudflare Blog&lt;/a&gt;: Claude agents now run on Cloudflare's edge infrastructure. This targets developers who want Anthropic's model quality with Cloudflare's distribution and billing surface — a distinct channel from the Microsoft-centric enterprise IT buying motion.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Microsoft + EY&lt;/strong&gt;&lt;a href="https://news.google.com/rss/articles/CBMirgFBVV95cUxQWlNLVzJlZDdINlZWc1NYR2prN1haYlpQTGZ6ckRfbDFRTUszWGd5ejh5MXNHYUFoSTlaaGVWRmJaVmVLcmVFclB5ajhyaTNyTGx6WFNKa3NkZ0prWnUwZXhadEpwclFVY1ZBT1VlX1MwWUlwYnVyRXJKRzVVdEpMaGxwS3RsZ3lKdU12Um51azg2NzJRVm1XY0hTNHhmUlRXb0hXRjcwMTkya0l6ZFE?oc=5" rel="noopener noreferrer"&gt;Microsoft and EY Team to Promote Corporate AI Adoption - PYMNTS.com&lt;/a&gt; and &lt;strong&gt;OneStream + Microsoft&lt;/strong&gt;&lt;a href="https://news.google.com/rss/articles/CBMiigJBVV95cUxNeThvdGxsZFptUDRuVTBwS0NRalZhY0ZfRFNBUXZYdmxrMFRGdXpvOU5MaDAwNHlMSFdsck16ZkRhc3dpVUhFckVfcTBFb0QyZjA2QjNfU0huUjZ0bEpHb3BHTGk2S0xOWF9tVnljU0JFam9hMTdsYlJvTjFYWDhmTFBtQmg2clN5ZlRsaGp0cjQzdzFwTGJrcmc2ZUxDMG1fbU1LclpvajZmRkYtb3N3UEtxUlhCWU9oZDh2VF9aWnhYbmlVNEJDdDUxWlZQQ3JuMFQxblN4eFE4VE1Md1FRQW9IUzduT0dOZnpzT1J5Z0pDamZNb0k0ZHdwNDZuN3pvVkxqb2FkX2pCQQ?oc=5" rel="noopener noreferrer"&gt;OneStream Announces Expanded Strategic Partnership with Microsoft to Scale AI Adoption and Value for the Office of the CFO - PR Newswire&lt;/a&gt;: Both announcements reflect the same pattern — professional services and finance software vendors treating Microsoft Copilot as the integration surface. These are ecosystem confirmations rather than AI capability announcements.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Chip Wall: Geopolitics as Engineering Constraint
&lt;/h2&gt;

&lt;p&gt;Trump stated China has not approved Nvidia AI chip imports, citing China's preference to develop domestic alternatives&lt;a href="https://news.google.com/rss/articles/CBMiigFBVV95cUxNYVVhZXZEYTNZcF9ncV85LUVnVHUyZC1jNE5HRGtIMVFqRzdVVFJIZzY2cTJfdHhVd3Q1MUlFbUpEMmlDeC0xR294SkpVV0taYjRZbUhTbTQyYkdUQ3RTVmM3MHd0RUt2UVJ4ekthdTgwaXRDc094MHVES0xWQnFocjNla3BiTzFhRVE?oc=5" rel="noopener noreferrer"&gt;Trump says China hasn't approved import of Nvidia AI chips because 'they want to develop their own' - Yahoo&lt;/a&gt;. Separately, a startup is reframing Nvidia H100/H200 compute as a "boring, bankable asset" for enterprises&lt;a href="https://news.google.com/rss/articles/CBMiyAFBVV95cUxNbGtVTnc3N3NjMHQ4VUdMSmxra05HYkwyU2QzUG95Q1RBUnlVVXRBNlBHZVZSakxTNmNSRy00WVF4UlU1eGI1OUQwanJsbWxRd2JUZExwYUUzb0RsUHBLR0cwQmZha0MtN0huWGktMXg0eEJkbnRCZVc5UkktX1pKN0twSEpGT3FsRDhUYzZtSEdwcXJ3S0NlMlIzY0NRalkzR0pZZlZRQTVVRnJZc1hNeWtrXzU5cDlzRy1zMERJQV9tODgtQXBwag?oc=5" rel="noopener noreferrer"&gt;The ‘Price is Right’ for GPUs: The Startup Turning Nvidia Chips Into ‘Boring’ Bankable Assets - The Information&lt;/a&gt; — packaging GPU infrastructure as a financial product to derisk enterprise capex decisions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Practical impact:&lt;/strong&gt; For AI infrastructure builds outside the US, export restrictions, lead times, and cost uncertainty are active engineering constraints. The startup-as-financial-product model may accelerate enterprise GPU adoption in markets where direct Nvidia procurement is constrained.&lt;/p&gt;




</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>tech</category>
      <category>llm</category>
    </item>
    <item>
      <title>AI 週報 — 2026-05-15 to 2026-05-22 | 當 IPO 傳聞撞上 27 萬人部署規模</title>
      <dc:creator>Yang Goufang</dc:creator>
      <pubDate>Fri, 22 May 2026 01:35:27 +0000</pubDate>
      <link>https://dev.to/yang_goufang_23c7ba674984/ai-zhou-bao-2026-05-15-to-2026-05-22-dang-ipo-chuan-wen-zhuang-shang-27-wan-ren-bu-shu-gui-mo-2feh</link>
      <guid>https://dev.to/yang_goufang_23c7ba674984/ai-zhou-bao-2026-05-15-to-2026-05-22-dang-ipo-chuan-wen-zhuang-shang-27-wan-ren-bu-shu-gui-mo-2feh</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;OpenAI 據報最快本週遞交 IPO 申請，同時 Anthropic 宣布 KPMG 逾 27 萬員工全面採用 Claude——兩起事件從不同角度指向同一個結論：AI 商業化正在從「試點實驗」轉向「制度性採納」。工程整合成本與可靠性數據能否通過這個規模的考驗，是接下來真正有意義的問題。&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  OpenAI 邁向公開發行：從研究實驗室到華爾街
&lt;/h2&gt;

&lt;p&gt;本週最具新聞份量的事件是 OpenAI 可能在短期內遞交 IPO 申請。Forbes 與紐約時報均於 5 月 20 日報導，OpenAI 已著手準備機密文件，最快於週五送件&lt;a href="https://news.google.com/rss/articles/CBMi0AFBVV95cUxPbUNPM3RKdnF0aklKak9TejBpS0R6Q2s5R1VENnFjS0R4Ui0wbEZ5enhOWjBlMFBlUzUwVnZPN3pvRzJzaWxmb3cxdDhpTHhfMDBlOUNCVE95N19XUGthMEdLN2RzYVhVc3lkTEpDLWRRSWJYdE9HYWZ4bFdHdlB1Nnh0SFdYS3ZqU3p0R2l6dGIzZHJJTVV4Z1N3eURET29lejIwbkEyUXNvb1U2OUdFMDdkeW1HeUZxcnlOUDh4dGFKV0Zqam5QMFpXOTE3NXNj?oc=5" rel="noopener noreferrer"&gt;OpenAI Could Confidentially File For IPO As Soon As Friday, Report Says - Forbes&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMibkFVX3lxTE1qcklkTzJFdzZvREs4Ukc2SWM1X1J2dVE1MTUxcU90a1N1NUFWR3ZtOWt6SFZKekthZ2huSlpXRnJ1TDViY1NlcWQ2NUMxaU9tcHUzLUVhRnl6R0pkR1plZHhPVW5WWEhfSTVJZEhn?oc=5" rel="noopener noreferrer"&gt;OpenAI Prepares to File for an I.P.O. in Coming Weeks - The New York Times&lt;/a&gt;。&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;IPO 申請本身不代表業務成熟度。&lt;/strong&gt; 申請機制允許公司在公開說明書送件前與機構投資人進行機密協商，時間點的解讀空間很大。真正有意義的問題是：&lt;strong&gt;OpenAI 的營收成長曲線是否足以支撐私募市場已經賦予它的估值？&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;從監管文件角度，IPO 為何在此時有意義？紐約時報同週報導，馬斯克對 OpenAI 的訴訟剛被法院駁回——陪審團一致裁定 OpenAI 贏得這場官司&lt;a href="https://news.google.com/rss/articles/CBMimAFBVV95cUxORXJJNWhWZG4tS1RCcDR6bnFLaHZYSEUwdFp4VkpWVm5OZG5URzVMaVQtOWtLMGp2OXpQVjF5MGdKOWtUTWhab0hJbVFRYV8wNnlld245OExuSy1QU3poWkNKSWxCZ2NxSzhvZnBBX1NQbUNOLUVvWElmTGhNaTZzbl9fVTlWR2lSWXc3dFBXTEZZQThGenZRVg?oc=5" rel="noopener noreferrer"&gt;Jury throws out Musk's lawsuit against OpenAI and Sam Altman - PBS&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMihgFBVV95cUxNSnB0ZkFYX0pwdjU0UUFqc1BUcF9QTzBhSEpjaW0xX19tX3pDV1hGaHJHU0RwR1hpcHl4aVRKcGJfME4ySzg3YzNBajQ2ZTJfc2xsSHVfbXVWX1p6aUhzcF9Ga1dEa3dpYWVVUERpYThWYTFWZjl3Z3A2ejRUOG0yUVNPd0RRUQ?oc=5" rel="noopener noreferrer"&gt;As OpenAI Celebrates Court Win Against Musk, Other Challenges Lie Ahead - The New York Times&lt;/a&gt;。訴訟風險移除後，公開發行的監管障礙降低了一項不確定因素。但 Marcus on AI 同日發布的分析指出，OpenAI 近期多項頭條聲稱存在數學基礎瑕疵，呼籲讀者謹慎對待未經驗證的數據&lt;a href="https://news.google.com/rss/articles/CBMieEFVX3lxTE12c2d3dnR1WGJqTmNoOXQwMFRqLXVPV0tFeE1fM3VCX2lEdFFmeXp2RkZKc0lYbTNldWg3WFdxSVpiemNlRUxhTzBKbDZfR2tKTkwteWUzQlVfZDZoX293RU1aQk16T0NOSWkxc1p1UnBJS0lfM3dhZQ?oc=5" rel="noopener noreferrer"&gt;Checking the math behind OpenAI and Anthropic’s latest headlines - Marcus on AI | Substack&lt;/a&gt;。在看到實際 S-1 檔案前，對估值相關敘事應保持觀望。&lt;/p&gt;

&lt;p&gt;另一個組織訊號：Greg Brockman 已正式接管 OpenAI 產品線&lt;a href="https://news.google.com/rss/articles/CBMicEFVX3lxTE5OX1BRenk3Q2ZSS1FDclA4aDh4Wmd0RzJINW5najZ0RHo2NUVDbFZsMUV3U0djcV9NLVdoR25XalB6WE5zVGxsemdId1hMOVN3X0ZzVXkwLTJuM2NleHBWNGNWUjhVOHJDUDlxUEhrQXo?oc=5" rel="noopener noreferrer"&gt;Greg Brockman Officially Takes Control of OpenAI’s Products in Latest Shake-Up - WIRED&lt;/a&gt;，從技術共同創辦人轉向產品營運角色，這是公司從研究為本轉向商業執行的組織訊號，而非技術訊號。&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;事件&lt;/th&gt;
&lt;th&gt;解讀層次&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;IPO 申請傳聞&lt;/td&gt;
&lt;td&gt;發布（非正式公告）&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;訴訟被駁回&lt;/td&gt;
&lt;td&gt;商業風險降低&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Brockman 接管產品&lt;/td&gt;
&lt;td&gt;組織重心轉移，非技術發布&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;結論：&lt;/strong&gt; IPO 進程是高度確定的方向，但實際價值判斷需等 S-1 數據出爐。營收組成與單位經濟是核心觀察指標，而非上市時程。&lt;/p&gt;

&lt;h2&gt;
  
  
  Anthropic 企業部署規模式的到來
&lt;/h2&gt;

&lt;p&gt;本週第二個重量級新聞是 Anthropic 與 KPMG 達成戰略聯盟，涵蓋 KPMG 全球逾 27.6 萬名員工&lt;a href="https://news.google.com/rss/articles/CBMiWEFVX3lxTE5iemlXdko4M2RsQ1FKVGVnaV9BUWEtUGZrTkdsaDlwczI1UE10OG5FU0JHbkdiZmFzTmN0UXpNRjhySHBiSk5YeG83XzU2RkF0dWhWbWZia2k?oc=5" rel="noopener noreferrer"&gt;KPMG integrates Claude across its core business and workforce of more than 276,000 in strategic alliance - Anthropic&lt;/a&gt;。同一週，BMS（必治妥施貴寶）也宣布採用 Claude 加速醫藥研發與全球工作流程&lt;a href="https://news.google.com/rss/articles/CBMivAFBVV95cUxNcFNWdnVCeV9sRFRkQ2FxLUZDXzlxQWlObGgyMXlJTkdsN3NtUzFFWlY1ZjgzdUlVdEJQX2Q1d3BYVW1rdDZyZVIzcmNTSy01OExudVZtdXRzU0lkU1NVNjlIN0k4T21Rb0VFelJJY0lza0Vxa1FRaWhxQ3RxaFlCRHJUWjF6a2VYOGJPSHoxRHhKU0FrT0lHSGMzcTM4d1dXSjFLZ1NJaXlsS25LYl91ZHFfeFJoMFh1TVZncw?oc=5" rel="noopener noreferrer"&gt;BMS taps Anthropic’s Claude for enterprise-wide AI adoption to speed R&amp;amp;D, global workflows - Fierce Pharma&lt;/a&gt;。&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;這個數量級有意義嗎？有，但需要條件約束。&lt;/strong&gt; 27.6 萬人覆蓋不等於 27.6 萬人每天在生產環境使用 AI。企業新聞稿中的「戰略聯盟」與「全企業部署」往往是分階段目標，而非現狀快照。Anthropic 自己的新聞稿未說明實際月活躍用戶或 API 呼叫量，整合成本的實際規模同樣不在公開資訊中。&lt;/p&gt;

&lt;p&gt;四大會計事務所的工作流程高度標準化且涉及大量文件審查、稅務分析、稽核編碼——若 KPMG 內部有可驗證的採用率數據出爐，這將是迄今最接近「制度性採納」定義的案例。&lt;strong&gt;但在此之前，聲稱這是規模化成功的證明，是把願景敘事當作事實。&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;同週稍早，Anthropic 發布 Code with Claude 的 Managed Agents 功能，支援主動式工作流程與能力曲線追蹤&lt;a href="https://news.google.com/rss/articles/CBMiYkFVX3lxTE52WF95M3JQX2VQYU9LSnB6ZjgtbTVhZW9pbFEyZEVRaHdNTFVzYzZkMEtBbks0QUpIdk9DZFdEX05ENkVraUZ1dWVjZVlMTlRIVk8xT0hJdkJPeFBkTVB2YUZB?oc=5" rel="noopener noreferrer"&gt;Anthropic's Code with Claude Announces Managed Agents, Proactive Workflows, Capability Curve - infoq.com&lt;/a&gt;。「主動式代理」意味著系統根據上下文自動觸發下一步行動，而非等待人類提示。從「工具」到「能動者」的範式轉移成立的前提是：系統在授權範圍內可預測地完成任務。&lt;strong&gt;這是可靠性要求最高的部署形態——任何環節失效都會中斷依賴它的工作流鏈。&lt;/strong&gt; 目前的宣布屬於「發布」層次，企業 API 的錯誤恢復機制與實測數據尚待驗證。&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;與替代方案比較：&lt;/strong&gt; Microsoft 同期發布 Work IQ 功能，號稱能追蹤員工與 AI 工具的互動效率&lt;a href="https://news.google.com/rss/articles/CBMinwFBVV95cUxQLWc4Vl9wclFzYXlJSHpUdS1ERTQ1c3lYOW1TRVFJZ1JtcHVTWE91aGJTVnZxQ2t3SHJ0a3FXS2lVcmdwRnZ2YjJDTHJWRkZ6Q0FLM3haSFNqMDk0SmZ6UXV2Y01PUkl4T2FHb2dVMlp6TVhFcnZWQmhUMWo0cF9aTDUybWNfaExWNVJ5SkdkeWV6dWRJMzVyRFFzTmxfMFE?oc=5" rel="noopener noreferrer"&gt;How Work IQ is supercharging our AI usage at Microsoft - Microsoft&lt;/a&gt;，但其本質是生產力度量工具，不是 AI 能力本身。Anthropic 專注讓 AI 主動行動，Microsoft 專注讓 AI 的行動可被量化——兩家公司正在從不同方向切入同一個問題。&lt;/p&gt;

&lt;h2&gt;
  
  
  基礎設施更新：NVIDIA CPU 與 Google I/O 代理軍備
&lt;/h2&gt;

&lt;h3&gt;
  
  
  NVIDIA Vera：首款專為代理工作負載設計的 CPU
&lt;/h3&gt;

&lt;p&gt;NVIDIA 於 5 月 18 日發布 Vera CPU，據稱是業界首款專為 AI 代理工作負載設計的 CPU，已進入頂級 AI 實驗室部署&lt;a href="https://news.google.com/rss/articles/CBMiXEFVX3lxTE9PQTRsd3pHVG1vQjVrUDc1MVhZYVJReURFUlVQU2xXdVpMbW16dnFIcmRPR0s4QWpOVVp3Z0FlWUhkWGFYd01DaXU4QWFHbThxMDhpajRXXzhHS1pT?oc=5" rel="noopener noreferrer"&gt;Vera Arrives: NVIDIA’s First CPU Built for Agents Lands at Top AI Labs - NVIDIA Blog&lt;/a&gt;。&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;評估這則新聞的框架：&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;這是「發布」還是「可用」？NVIDIA 新聞稿通常在晶片發布時同步宣布合作夥伴，但量產時程與大規模供貨是獨立的變數。Vera 目前鎖定的客戶是「AI 實驗室」，不是一般企業——出貨量在初期受限，價格與供應鏈資訊尚未透明。&lt;/p&gt;

&lt;p&gt;對代理工作負載的具體優化方向：多代理協作需要高頻、低延遲的任務調度能力，這與傳統 GPU 加速的訓練或推論場景不同。NVIDIA 若能在 CPU 層面解決任務排程瓶頸，對多代理系統的延遲優化有實質意義——&lt;strong&gt;前提是實測資料能驗證這個宣稱&lt;/strong&gt;，而非僅是行銷文件。&lt;/p&gt;

&lt;h3&gt;
  
  
  Google Gemini I/O 更新：主動式 24/7 代理
&lt;/h3&gt;

&lt;p&gt;Google 在 I/O 2026 第二天宣布 Gemini 應用程式全面代理化，具備主動式、全天候協助能力&lt;a href="https://news.google.com/rss/articles/CBMijAFBVV95cUxNVGxlcDl0VnlkNWYzdUcwSTkyM0FBOFNUUGpkWjdRV0Zmcmp5cjJQa0VwX3lqamY2ZXRFQlBMSEt6ZkxVd2FMN2sxZHd2ZG1HeVkycTAwX0dHREJEMmFYU09RM2JzaUppQjhsMTNJU00xUk4yTkF3cGxEYjUtclc1M2NWWUQ4M1hpWGRNOQ?oc=5" rel="noopener noreferrer"&gt;The Gemini app becomes more agentic, delivering proactive, 24/7 help - blog.google&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMibEFVX3lxTFBQeDE4MmRwaEtnQUE4aWdHVENxbkpGWDZFRWhuWUdkRjZnNjhsUGtvVk4zYnc0NXdUcTJaOG5jV3piVHdBMjJock5JdVBPOWtuR2ZUMW5hUjZyNXl4RW5DSWpYZGRsUXpOcExBVA?oc=5" rel="noopener noreferrer"&gt;I/O 2026: Welcome to the agentic Gemini era - blog.google&lt;/a&gt;。「代理化」的具體定義是：Gemini 能根據使用者行為模式主動預判需求並採取行動。&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;工程落地角度的質疑：&lt;/strong&gt; 「24/7 主動幫助」在消費者應用裡是合理的功能描述，但在企業場景中，「主動」與「自動執行」之間存在可靠性鴻溝。企業需要的不是「可能會幫我做事」的系統，而是「在授權範圍內可預測地完成任務」的系統。目前的宣布屬於「發布」層次，真正落地需要看到企業 API 的可靠性數據與錯誤恢復機制——這些資料目前不在公開資訊中。&lt;/p&gt;

&lt;h2&gt;
  
  
  晶片競合動態：Amazon 逼近、NVIDIA 仍居核心
&lt;/h2&gt;

&lt;p&gt;AWS 與 NVIDIA 的關係正在出現戰略裂縫。digitimes 報導，Amazon 自研 AI 晶片漸獲採用，但 NVIDIA 仍是 AWS 資料中心的核心供應商&lt;a href="https://news.google.com/rss/articles/CBMijgFBVV95cUxPYWlxeXZocXdTOHZQLWJwUzAzY2U4TWRKRUZHWTBDdlBmRkZyYWU1UjNxNjFBaF9vYTB0V0FzR2NpMGRsTURsM215cEZvS2pDejgxUU1OeDl5NUxnejNySGgycFBQcHl3cVh3UDExU3AtUkgyN2JCUUhEaHB3ZUlnVkY0RmZ6bGgySHVpbXRn?oc=5" rel="noopener noreferrer"&gt;Amazon's AI chip push gains ground as Nvidia remains central to AWS - digitimes&lt;/a&gt;。AIMultiple 的 AI 晶片廠商全景圖顯示，NVIDIA 競爭者名單持續擴張，但多數尚未威脅其訓練與高效能推論的領先地位&lt;a href="https://news.google.com/rss/articles/CBMiTkFVX3lxTE9UYlQtNjVDT09maWxpR0pGbEU0MGxYaDdad1VzYnp6cXBTcjc4RlY0TXJ0SVVvb0NTU19DdkVCbFFOVjk1MUNmdUg4UjhEdw?oc=5" rel="noopener noreferrer"&gt;Top 25+ AI Chip Makers: NVIDIA &amp;amp; Its Competitors - AIMultiple&lt;/a&gt;。&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;供應商&lt;/th&gt;
&lt;th&gt;當前態勢&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;NVIDIA&lt;/td&gt;
&lt;td&gt;訓練/HPC 領先，Vera 瞄準代理推理市場&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AWS (Trainium/Inferentia)&lt;/td&gt;
&lt;td&gt;自研晶片獲内部採用，成本優勢針對特定推論場景&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;其他競爭者&lt;/td&gt;
&lt;td&gt;多數集中在特定垂直場景，尚未規模化威脅 NVIDIA 地位&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;工程師決策點：&lt;/strong&gt; 若工作負載是訓練或大規模推論，NVIDIA 生態系仍是最短路徑。若是特定場景的邊緣推論，AWS 自研晶片的成本結構值得評估——不是因為性能超越，而是因為性價比。&lt;/p&gt;

&lt;h2&gt;
  
  
  一週數據掃描
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;馬斯克訴訟被駁回&lt;/strong&gt;&lt;a href="https://news.google.com/rss/articles/CBMimAFBVV95cUxORXJJNWhWZG4tS1RCcDR6bnFLaHZYSEUwdFp4VkpWVm5OZG5URzVMaVQtOWtLMGp2OXpQVjF5MGdKOWtUTWhab0hJbVFRYV8wNnlld245OExuSy1QU3poWkNKSWxCZ2NxSzhvZnBBX1NQbUNOLUVvWElmTGhNaTZzbl9fVTlWR2lSWXc3dFBXTEZZQThGenZRVg?oc=5" rel="noopener noreferrer"&gt;Jury throws out Musk's lawsuit against OpenAI and Sam Altman - PBS&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMihgFBVV95cUxNSnB0ZkFYX0pwdjU0UUFqc1BUcF9QTzBhSEpjaW0xX19tX3pDV1hGaHJHU0RwR1hpcHl4aVRKcGJfME4ySzg3YzNBajQ2ZTJfc2xsSHVfbXVWX1p6aUhzcF9Ga1dEa3dpYWVVUERpYThWYTFWZjl3Z3A2ejRUOG0yUVNPd0RRUQ?oc=5" rel="noopener noreferrer"&gt;As OpenAI Celebrates Court Win Against Musk, Other Challenges Lie Ahead - The New York Times&lt;/a&gt;：陪審團一致裁定，OpenAI 贏得這場官司。組織控制權爭議已獲法院背書，但上訴權與其他訴訟仍在流程中，智財權與商業模式的長期爭議未必就此落幕。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI 與馬爾他合作&lt;/strong&gt;&lt;a href="https://news.google.com/rss/articles/CBMiZ0FVX3lxTE9YVndPb3VQUlhvZ3F0SFl3dGxJX1BPUnFNZUpiMzFZaEVYQkp1elJMcHRYNWJUTVZYTzYtb0RBLVpLZ1dXek5aRmlGeERyZHE2bG5QQ3NRQ3FxM3FRTnN6SlFZS2tDYjg?oc=5" rel="noopener noreferrer"&gt;OpenAI and Malta partner to bring ChatGPT Plus to all citizens - OpenAI&lt;/a&gt;：ChatGPT Plus 擴展至馬爾他全體公民。「國家級部署」與「實際使用率」是兩件事，這個個案目前僅屬前者。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenAI 與戴爾合作&lt;/strong&gt;&lt;a href="https://news.google.com/rss/articles/CBMia0FVX3lxTE1JQ0otU0wtSnVTb3p3RUo3RGFwcXhzMEs5ell1ZU9LeF92REQ0WWpYZXRNR3dON0ROdVVmako1V29YZWUzN0Z3ajBINldtc3lGczRBOUh6OFZ0RWJxc3V1MTk4eUlZUnUxdnZB?oc=5" rel="noopener noreferrer"&gt;OpenAI and Dell Technologies partner to bring Codex to hybrid and on-premises enterprise environments - OpenAI&lt;/a&gt;：Codex 進軍混合雲與本地部署企業環境。這是對 Azure 獨家地位的直接挑戰，也是 OpenAI 企業銷售多元化的訊號。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Microsoft AI 主管的 18 個月宣言&lt;/strong&gt;&lt;a href="https://news.google.com/rss/articles/CBMiowFBVV95cUxQLXAwd1YwLWZMR0NTZVhlVFBHM1gwS0taWDFjcmFHMFdtOVc2NjdSd3dlNHBMVE1GYUo4c2IxMXQ2REl0Q2xnbUJnU0pxMG1USkZqempOWGdjN01obGJUNmMxSllFcGxWZUt4T1FXdHlGTHdKYVFMcGRiR0VJc25pQnpaT3FLU08zbzhIRzR6VzdMcVZiY0NING02UnJxTU9OZVdv?oc=5" rel="noopener noreferrer"&gt;Microsoft AI chief gives it 18 months—for all white-collar work to be automated by AI - Fortune&lt;/a&gt;：宣稱所有白領工作將在 18 個月內被 AI 自動化。白領工作的多樣性與法規限制意味著全面自動化在短期內不可能發生；這類聲稱缺乏具體技術路線圖支撐，更接近公關敘事。&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;本文所有事實均可於五分鐘內透過公開來源驗證。沒有引用任何未經驗證的匿名消息或內部文件。&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>tech</category>
      <category>llm</category>
    </item>
    <item>
      <title>Meta GEM 推薦基石模型深剖：大廠限定的工程地獄與落地取捨</title>
      <dc:creator>Yang Goufang</dc:creator>
      <pubDate>Thu, 21 May 2026 01:00:54 +0000</pubDate>
      <link>https://dev.to/yang_goufang_23c7ba674984/meta-gem-guang-gao-tui-jian-da-mo-xing-shen-pou-da-mo-xing-ji-shu-zai-recsys-luo-di-shang-de-gong-cheng-qu-she-yu-shi-zhan-guan-dian-2ll0</link>
      <guid>https://dev.to/yang_goufang_23c7ba674984/meta-gem-guang-gao-tui-jian-da-mo-xing-shen-pou-da-mo-xing-ji-shu-zai-recsys-luo-di-shang-de-gong-cheng-qu-she-yu-shi-zhan-guan-dian-2ll0</guid>
      <description>&lt;h1&gt;
  
  
  Meta GEM 推薦基石模型深剖：大廠限定的工程地獄與落地取捨
&lt;/h1&gt;

&lt;p&gt;Meta 最近揭露了其廣告推薦中央大腦 &lt;strong&gt;GEM（Generative Ads Recommendation Model）&lt;/strong&gt; 的技術細節。公關數據非常漂亮：Instagram 廣告轉換率提升 5%，Facebook Feed 提升 3%，訓練效率是傳統蒸餾的 2 倍。&lt;/p&gt;

&lt;p&gt;但站在做落地判斷的工程師視角，這是一篇典型的「大廠資源秀肌肉」報告。它堆砌了萬卡 GPU、自研 NCCLX 通訊與 Jagged Tensor 算子。以下我們直接扒開架構，評估其真正的工程代價與落地可行性。&lt;/p&gt;




&lt;h2&gt;
  
  
  一、 架構設計：解決稀疏性，但代價是推理延遲（Inference Latency）
&lt;/h2&gt;

&lt;p&gt;推薦系統的核心痛點在於&lt;strong&gt;特徵空間極度稀疏（Sparse）&lt;/strong&gt;與&lt;strong&gt;行為序列長度不一&lt;/strong&gt;。GEM 採用了三個關鍵架構來應對：&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;Wukong（悟空）非序列特徵交叉&lt;/strong&gt;：
利用可堆疊的因子分解機（Factorization Machines）配合 Cross-layer Attention 連接。

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;取捨評估&lt;/strong&gt;：這能強迫模型學到深層的特徵互動，但多層注意力機制在線上預估（Online Serving）時會帶來災難性的&lt;strong&gt;推理延遲（Inference Latency）&lt;/strong&gt;。&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;InterFormer 序列與特徵交替學習&lt;/strong&gt;：
傳統方法會把用戶歷史序列先壓縮成一個 Embedding 向量再傳給下游，這會造成行為訊號嚴重流失。InterFormer 選擇交替進行序列學習與跨特徵交互。

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;取捨評估&lt;/strong&gt;：保留了完整的行為路徑，代價是&lt;strong&gt;記憶體頻寬與 Embedding 儲存開銷暴增&lt;/strong&gt;。&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;金字塔平行結構（Pyramid-Parallel Structure）&lt;/strong&gt;：
在處理數千長度的用戶行為序列時，透過堆疊平行模組來降低儲存開銷。

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;取捨評估&lt;/strong&gt;：這能把複雜度壓下來，但越往金字塔上方傳遞，特徵細節的損耗就越大。&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  💡 落地判斷：
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;Meta 敢用 Wukong 和 InterFormer，是因為他們把 GEM 定位為&lt;strong&gt;離線基石模型（FM）&lt;/strong&gt;，不直接線上 Serving，而是透過知識蒸餾把參數傳給線下的百個小模型（VM - Vertical Models）。如果你的團隊沒有這套 FM-VM 的離線-線上蒸餾架構，直接拿 Wukong / InterFormer 跑線上即時推薦，無異於線上自殺。&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  二、 知識傳遞（Knowledge Transfer）：解決監督過期（Stale Supervision）的妙招
&lt;/h2&gt;

&lt;p&gt;GEM 大模型線下訓練有時間差，而線上 VM 需要應對實時變化的用戶行為。這會導致&lt;strong&gt;「監督過期」（Stale Supervision）&lt;/strong&gt;，即 FM 傳給 VM 的知識可能已經過時。&lt;/p&gt;

&lt;p&gt;Meta 採用了三個 Post-training 技巧（&lt;strong&gt;效率宣稱為傳統蒸餾的 2 倍&lt;/strong&gt;）：&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;+------------------------------------------+
|      GEM Foundation Model (Teacher)      |
+------------------------------------------+
                     |
                     v
+------------------------------------------+
|       Student Adapter (即時修正)          | &amp;lt;--- 接入最新 Label 修正偏差
+------------------------------------------+
                     |
      +--------------+--------------+
      | (知識蒸餾)   | (特徵表示)   | (參數共享)
      v              v              v
+------------------------------------------+
|          Vertical Models (VMs)           |
+------------------------------------------+
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Student Adapter（學生適配器）&lt;/strong&gt;：
在蒸餾過程中加入輕量級 Adapter，用最新產生的 Ground-truth 標籤實時修正 Teacher 的預估值，拉回時間差造成的預估偏差。&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;特徵表示學習（Representation Learning）&lt;/strong&gt;：
不只蒸餾機率，更把 Teacher 與 Student 的特徵語意對齊，&lt;strong&gt;完全不增加線上推理延遲&lt;/strong&gt;。&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;參數共享（Parameter Sharing）&lt;/strong&gt;：
讓小模型直接複用大模型的特定參數，節省運算成本。&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  💡 落地判斷：
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Student Adapter 是整篇報告中最具實用價值的工程細節&lt;/strong&gt;。任何做離線-線上模型蒸餾的團隊都應該抄這招。它唯一的代價在於你需要一套極度穩定、低延遲的即時標籤回傳（Real-time Labeling Pipeline）。&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  三、 訓練基礎設施：重度定製的軟硬體協同（一般團隊玩不起）
&lt;/h2&gt;

&lt;p&gt;Meta 宣稱在 GPU 數量擴大 16 倍的情況下，跑出 23 倍的有效訓練 FLOPS，MFU（模型 FLOPS 利用率）提升 1.43 倍。&lt;/p&gt;

&lt;p&gt;不要只看這張成績單，背後是重度的工程定製：&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;2D 稀疏平行（2D Sparse Parallelism）&lt;/strong&gt;：
推薦模型跟 LLM 不同，Dense 部分（Attention/MLP）用 HSDP（混合分片分散式平行），而 Sparse 部分（Embedding Table）則是用資料+模型雙重平行。這對節點間的通訊頻寬要求極端苛刻。&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Jagged Tensor 自研算子&lt;/strong&gt;：
用戶的序列長度通常是參差不齊的（Jagged）。傳統做法是 Padding 補零，但這在 GPU 運算上是巨大的浪費。Meta 為此編寫了客製化 GPU Kernel，支援不規則序列的算子融合（Computation Fusion）。&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;NCCLX 通訊庫&lt;/strong&gt;：
這是 Meta 對 NCCL 的自研分支，核心優化是讓通訊集合&lt;strong&gt;不佔用 GPU 的 SM 資源&lt;/strong&gt;，實現計算與通訊的完全重疊（Overlap）。&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  💡 落地判斷：
&lt;/h3&gt;

&lt;blockquote&gt;
&lt;p&gt;這些優化不是在演算法層面，而是在 &lt;strong&gt;CUDA 算子和網絡拓撲級別的重度改造&lt;/strong&gt;。非巨頭企業根本沒有足夠的編譯工程師與硬體專家來開發和維護這套客製化工具鏈。&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  四、 YangGF 的落地判斷 (Landing Assessment)
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;維度&lt;/th&gt;
&lt;th&gt;評估結論&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;已發布 (Released)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;是。論文與架構細節已揭露。&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;可用性 (Available)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;否。外部開發者無開源模型可用。&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;可商用性 (Commercially Viable)&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;
&lt;strong&gt;極低（僅限廣告超大廠）&lt;/strong&gt;。只有在廣告變現流水足以覆蓋萬卡 GPU 維護與研發成本的前提下，ROI 才能轉正。&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;工程瓶頸&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;1. &lt;strong&gt;訓練通訊頻寬&lt;/strong&gt;：Sparse 部分對網路 I/O 要求高。&lt;br&gt;2. &lt;strong&gt;維護代價&lt;/strong&gt;：FM-VM 的雙層蒸餾 pipeline 極易因標籤異常而崩潰。&lt;br&gt;3. &lt;strong&gt;客製化工具鏈&lt;/strong&gt;：Jagged Tensor 算子與 NCCLX 對基礎設施工程能力要求過高。&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  🛠️ 給架構師的落地建議：
&lt;/h3&gt;

&lt;p&gt;如果你的團隊不是位列一線的流量巨頭，&lt;strong&gt;千萬不要盲目跟風去架構一個千億參數的推薦基礎大模型&lt;/strong&gt;。&lt;br&gt;
我們應該把錢花在刀口上，吸收 GEM 的實用精髓：&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;抄 Student Adapter 的思路&lt;/strong&gt;：在你的蒸餾 Pipeline 中加入時效偏差修正，低成本解決離線模型時效性差的硬傷。&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;參考 Jagged Tensor 算子融合&lt;/strong&gt;：最佳化你的長行為序列特徵在 GPU 上的運算效率，避免 padding 浪費算力。&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  🤔 讀者交流時間
&lt;/h2&gt;

&lt;p&gt;各位在實際推薦系統的落地中，如何處理離線大模型（Teacher）與線上小模型（Student）之間的特徵與標籤時效性（Staleness）偏差？你們有嘗試過類似 Student Adapter 的微調機制嗎？&lt;/p&gt;

&lt;p&gt;歡迎在下方留言，我們一起探討。&lt;/p&gt;

</description>
      <category>recsys</category>
      <category>machinelearning</category>
      <category>architecture</category>
      <category>engineering</category>
    </item>
    <item>
      <title>教宗良十四世首道通諭聚焦 AI：當教會成為房間裡的成年人</title>
      <dc:creator>Yang Goufang</dc:creator>
      <pubDate>Mon, 18 May 2026 01:14:59 +0000</pubDate>
      <link>https://dev.to/yang_goufang_23c7ba674984/jiao-zong-liang-shi-si-shi-shou-dao-tong-yu-ju-jiao-aidang-jiao-hui-cheng-wei-fang-jian-li-de-cheng-nian-ren-ijp</link>
      <guid>https://dev.to/yang_goufang_23c7ba674984/jiao-zong-liang-shi-si-shi-shou-dao-tong-yu-ju-jiao-aidang-jiao-hui-cheng-wei-fang-jian-li-de-cheng-nian-ren-ijp</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;來源說明&lt;/strong&gt;：本文為《The Globe and Mail》&lt;a href="https://www.theglobeandmail.com/business/technology/science/article-pope-leo-encyclical-study-group-artificial-intelligence/" rel="noopener noreferrer"&gt;Pope Leo's first encyclical to focus on use of artificial intelligence&lt;/a&gt;（記者 Nicole Winfield / Associated Press，2026 年 5 月 16 日發布）一文的繁體中文摘譯與個人評論。原文版權歸 The Globe and Mail 與 Associated Press 所有。本文不取代閱讀原文。&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  一句話摘要
&lt;/h2&gt;

&lt;p&gt;教宗良十四世（Pope Leo XIV）剛簽署他任內第一道通諭（encyclical），主題是人工智慧；梵蒂岡同日宣布成立 AI 研究小組。這份文件刻意選在《新事》（Rerum Novarum）通諭發布 135 週年的同一天簽署——當年那份文件是天主教社會思想的奠基之作，回應的是工業革命；這次回應的是 AI 革命。&lt;/p&gt;

&lt;h2&gt;
  
  
  為什麼這件事值得關注
&lt;/h2&gt;

&lt;p&gt;天主教會全球約 &lt;strong&gt;15 億信眾&lt;/strong&gt;，這是任何一份倫理宣言的潛在受眾規模。但更值得關注的是&lt;strong&gt;時間點與框架選擇&lt;/strong&gt;：&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;教宗選擇用「通諭」這個天主教會最正式的教義文件形式來處理 AI，而不是一般演說或書信。通諭具有教導權威，會進入教會的長期社會教學體系。&lt;/li&gt;
&lt;li&gt;簽署日期刻意對齊《新事》通諭 1891 年 5 月 15 日的發布日。教宗良十四世顯然把 AI 革命定位為與工業革命同等量級的人類處境變動。&lt;/li&gt;
&lt;li&gt;內容方向是「以人性尊嚴為核心的倫理進路」（an ethics-based approach that prioritizes human dignity and peace），預計連結到教會社會教學中已有的勞動、正義、和平等議題框架。&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;換言之，這不是一份應景的公關發言，而是教會把 AI 議題正式納入其千年神學論述的傳統之中。&lt;/p&gt;

&lt;h2&gt;
  
  
  教宗良十四世的立場輪廓
&lt;/h2&gt;

&lt;p&gt;文章透露出的他個人立場有幾個鮮明特徵：&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;數學主修出身、會滑手機&lt;/strong&gt;——文章特別點出他並非對科技疏離，這讓他的批判更難被歸類為「不懂技術的宗教保守派」。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;奧斯定會（Augustinian）背景&lt;/strong&gt;——他特別憂慮生成式 AI 透過 deepfake 進行假訊息與欺騙的能力，因為「對真理的追求」是奧斯定靈修傳統的核心。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;對神父的內部規定&lt;/strong&gt;——他已警告神父不要用 AI 寫講道辭。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;戰爭中的 AI 是紅線&lt;/strong&gt;——他公開譴責烏克蘭、加薩、黎巴嫩、伊朗等戰場上自動化武器系統的擴散，稱之為「戰爭與新科技關係中的非人化演進，一個毀滅性的螺旋」。&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;2025 年 6 月對一場 AI 會議的演講中，他承認生成式 AI 對醫療與科學發現的貢獻，但同時提問：AI 對「人類對真理與美的開放性、我們把握現實的獨特能力」可能造成什麼後果？&lt;/p&gt;

&lt;h2&gt;
  
  
  美國視角：與 Trump 政府的張力
&lt;/h2&gt;

&lt;p&gt;這份通諭的發布幾乎注定會成為&lt;strong&gt;梵蒂岡與 Trump 政府之間的新摩擦點&lt;/strong&gt;。原文點出的對比很尖銳：&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;教宗&lt;/strong&gt;：芝加哥出生，強調人性尊嚴與國際倫理規範。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Trump 政府&lt;/strong&gt;：明確拒絕對 AI 的國際監管努力，並在國內移除減緩 AI 發展的官僚障礙，把 AI 視為國家經濟與安全戰略的核心。&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;報導時，Trump 正結束中國行，同機的有 Elon Musk（旗下 X 平台搭載 AI 聊天機器人 Grok）與 Nvidia 執行長 Jensen Huang（剛獲准向中國銷售 H200 AI 晶片）。這個畫面本身就是對「以人性尊嚴為核心」的另一種答案。&lt;/p&gt;

&lt;h2&gt;
  
  
  來自學界的兩段引述（值得記住的框架）
&lt;/h2&gt;

&lt;p&gt;Notre Dame 大學哲學教授 Meghan Sullivan：&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;「我認為天主教會在很多方面將會成為這些 AI 整合進社會的辯論裡，&lt;strong&gt;那個房間裡的成年人&lt;/strong&gt;。教宗無疑會成為人性尊嚴最有力的倡議者之一。」&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;University of St. Thomas（Houston）神學教授 Thomas Harmon：&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;「全世界有將近 15 億天主教徒，光這個數字就值得關注。但除了數字之外，天主教會對於『成為人意味著什麼』有著深厚而細膩的思考傳統。」&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;「房間裡的成年人」這個說法值得在 AI 倫理討論中記下來——它隱含的判斷是：科技公司在做技術決策，政府在做戰略決策，但&lt;strong&gt;有資格代表「整體人類處境」發言的玩家很少&lt;/strong&gt;，而教會自認是其中一個。&lt;/p&gt;

&lt;h2&gt;
  
  
  教會 AI 倫理路徑的時間線（個人整理）
&lt;/h2&gt;

&lt;p&gt;把原文散落的事件拉成時間軸，可以看出教廷是有系統地累積 AI 立場，而非臨時起意：&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;2020&lt;/strong&gt;：梵蒂岡發起 &lt;em&gt;Rome Call for AI Ethics&lt;/em&gt;，IBM、Microsoft、Cisco 等公司簽署。核心原則包含包容性、可問責性、不偏頗、隱私。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;2024&lt;/strong&gt;：教宗方濟各在 G7 高峰會發表 AI 專題演說，呼籲禁止「致命自主武器」（killer robots），並主張需要國際條約來規範 AI。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;2024&lt;/strong&gt;：歐盟通過 &lt;em&gt;AI Act&lt;/em&gt;，以風險分級方式規範 AI。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;2025&lt;/strong&gt;：聯合國通過新的 AI 治理架構（在英、韓、法等國 AI 峰會只產生非約束性承諾之後）。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;2025/06&lt;/strong&gt;：教宗良十四世首次對 AI 會議發表演說。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;2026/05/15&lt;/strong&gt;：良十四世簽署 AI 主題通諭。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;2026/05/16&lt;/strong&gt;：梵蒂岡宣布成立內部 AI 研究小組；通諭預計數週內公開發布。&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  個人評論：通諭會比監管文件更有影響力嗎？
&lt;/h2&gt;

&lt;p&gt;技術圈傾向用「監管 vs 創新」的二元軸來看 AI 治理。但這份通諭如果真的進入教會社會教學的傳統，它的&lt;strong&gt;影響時間尺度與機制都不同&lt;/strong&gt;：&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;監管文件如 EU AI Act 影響的是合規成本與市場准入。&lt;/li&gt;
&lt;li&gt;通諭影響的是&lt;strong&gt;幾世代之內，全球 15 億人關於「AI 該如何使用」的道德直覺&lt;/strong&gt;。&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;工業革命的歷史證據是：《新事》通諭一個世紀後，仍然是天主教社會教學的引用源頭——對勞動法、最低工資、工會權利的討論至今帶有它的印記。如果良十四世的 AI 通諭擁有類似的耐久性，那麼它的目標受眾就不是 2026 年的政策辯論，而是&lt;strong&gt;未來幾代人對 AI 的默認態度&lt;/strong&gt;。&lt;/p&gt;

&lt;p&gt;對 AI 行業而言，這意味著一件事：在「AI 該被允許做什麼」這個問題上，&lt;strong&gt;長期取勝的不是 EU 委員會、不是科技公司、也不是國家戰略&lt;/strong&gt;，而是那些有能力塑造&lt;strong&gt;世代直覺&lt;/strong&gt;的機構。教會是其中之一。&lt;/p&gt;

&lt;p&gt;通諭公開發布後值得追蹤幾個具體問題：&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;致命自主武器的立場&lt;/strong&gt;：是否延續方濟各的明確禁令？&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;勞動取代議題&lt;/strong&gt;：是否會明確區分「AI 補充人類勞動」vs「AI 取代人類勞動」？&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;環境成本&lt;/strong&gt;：原文已提到梵蒂岡關注資料中心的能源與用水。通諭會否進入「AI 與被造界完整性」（integrity of creation）的神學框架？&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;真理與 deepfake&lt;/strong&gt;：奧斯定靈修對真理的強調，會否轉化為對生成式 AI 內容標示的具體呼籲？&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;這四個議題會決定通諭是「一份普世性的倫理呼籲」還是「一份對 AI 行業有具體操作含義的文件」。在數週內見分曉。&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;原文連結&lt;/strong&gt;：&lt;a href="https://www.theglobeandmail.com/business/technology/science/article-pope-leo-encyclical-study-group-artificial-intelligence/" rel="noopener noreferrer"&gt;Pope Leo's first encyclical to focus on use of artificial intelligence — The Globe and Mail&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>ethics</category>
      <category>policy</category>
      <category>philosophy</category>
    </item>
    <item>
      <title>AI Weekly — 2026-05-08 to 2026-05-15 | OpenAI the Consultant, Anthropic the Platform — Model Companies Pivot Collectively</title>
      <dc:creator>Yang Goufang</dc:creator>
      <pubDate>Fri, 15 May 2026 02:28:18 +0000</pubDate>
      <link>https://dev.to/yang_goufang_23c7ba674984/ai-weekly-2026-05-08-to-2026-05-15-openai-the-consultant-anthropic-the-platform-model-42j9</link>
      <guid>https://dev.to/yang_goufang_23c7ba674984/ai-weekly-2026-05-08-to-2026-05-15-openai-the-consultant-anthropic-the-platform-model-42j9</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;One-sentence takeaway this week: OpenAI is becoming a consulting firm, Anthropic is becoming a platform company — both have simultaneously abandoned the "model-as-product" narrative.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Model Companies Pivot Collectively: From API Sales to Institutional Resources
&lt;/h2&gt;

&lt;p&gt;$14 billion — that is the valuation OpenAI has assigned to its newly formed "Deployment Company," reportedly derived from external funding discussions in the same week&lt;a href="https://news.google.com/rss/articles/CBMickFVX3lxTE95QnZPQkxzLW9WdHJLbUplMUo3dHgyY0JSNmJfdkRzdXlaU2ZUdGw2VEFyM3NXQ1VNYTBqR3Jnem5DQk9MV3NQZm5MM3NtbVo3d19xNlhsWnNkMFFaTGhkZDVrZmJOZTVObzBKOGZQbmd4Zw?oc=5" rel="noopener noreferrer"&gt;OpenAI launches the OpenAI Deployment Company to help businesses build around intelligence - OpenAI&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMicEFVX3lxTE51QUtsM0czTWtzWXBfMEw2amtqdEhOUFlDNUh4UXRtYmM2VUZRQ0NiQXVMclBnSE9tM0t5SWwwTVBRZUx4WWVkNGJFVDdncVZwRURnOVlyYmFKZkZYYVBGZnE3bE9VRnAyVzQyVzFzbjU?oc=5" rel="noopener noreferrer"&gt;OpenAI launches AI consulting arm valued at $14 billion - Axios&lt;/a&gt;. By contrast, the flagship API business that underpins the company's valuation has never received such external validation. The market is telling OpenAI: your most valuable asset isn't the model, it's delivery capability.&lt;/p&gt;

&lt;p&gt;On 5/11 OpenAI announced the formation of the Deployment Company; the same day Axios reported the division's valuation. Simultaneously, OpenAI's head of revenue, Dresser, told CNBC that enterprise AI adoption has reached a "tipping point" — but he wasn't referring to demand explosion, rather &lt;strong&gt;delivery complexity&lt;/strong&gt;&lt;a href="https://news.google.com/rss/articles/CBMifEFVX3lxTE56YkNzZ0NCdElkekVKSncwNVY2WmlBQzd1S3pvSkYxOXNFdW52MWN6MHFQV21sa0FaLVJqbEl0Zm9OczQ2ZGI4cVM1SFowenMyYzNKb3RydjBWNE1NNV9NUi1sZk9BZFlra3FrNUo0RUU5VWhpNVpJX2RYamrSAYIBQVVfeXFMT2RQNWJ3OC1vbGFKLWVWekdWNl9pc1htREFvRXBKUFNjM1NTWHpMb0RPMlkxOXZEUW1kYWZ4MDVTeGhMbjdYbFBlVG9jdk8xNWplRnliMmtxUnktS25tTTZjOGhfXzk2djI4UEJXRHBuTkhleGIzUXVlN1BfRjVjNUN0QQ?oc=5" rel="noopener noreferrer"&gt;OpenAI revenue chief Dresser says enterprise AI adoption is 'at a tipping point' - CNBC&lt;/a&gt;. This aligns with the Accenture Federal Services partnership for federal government work — involving security compliance and legal constraints — and the Fiserv partnership for financial institutions, forming a single narrative: enterprises don't want APIs, they want someone to turn APIs into compliant, reliable, explainable systems&lt;a href="https://news.google.com/rss/articles/CBMixgFBVV95cUxPbjFnd0JPT1JzcGRGbThyUm9MWUJxeUtVbGJycmNRUl9YVDZYSktBaFh0XzVicU1zMDA1ZzN4T1JLRmpOSGJsUUJocjZHUXY2SThrcmlHYjNiLVJ3VGE4dVVKZ1RxdlNRaGJvaDJvLXJRM18wZVZ3ZkpkZkRIOEpweFMzODNzMEhjcXBKWE5xN25TTWEwdl9IZGh4bmRRek1MMmZJdnpEd2lMSXhGTUxGQWRjdXZidGREYkZIZ0lCbThKakdQamc?oc=5" rel="noopener noreferrer"&gt;Fiserv Forms Strategic Collaboration with OpenAI to Bring AI to How Fiserv Serves Financial Institutions - Fiserv&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMi4wFBVV95cUxPMXVOODM4dTQxa1dicnZpTWJpcXJ1T0dEd2FUaDM2Mi1FNDVsOVZhWnZONW1pX0UwQ2xJdGVNUzQwTUZDRnVpYUJZLVAwbjg2YkF2U0EzVnpNVUVkc04wQnFmQkNneEhJX0dKUlRsVnM5MFkzdnJ5T0YtbHZSOG5VQkpSSG1RbGs0blpTbjl4S0Q0NW1qeGplYVJlVjF1MHhpMHVRbVBYLU5KaEtCRUpONDFCeXNYdzJVenNyZUtoUVVzVzNHbDdIeXFSVm5LVUdIUnFwZmk1ZlRWYTFadjNWekpmdw?oc=5" rel="noopener noreferrer"&gt;Accenture Federal Services and OpenAI Partner to Accelerate Secure AI Adoption Across the Federal Government - Accenture&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Anthropic's response took a different path: &lt;strong&gt;ecosystem lock-in&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;This week Anthropic released Claude for Small Business&lt;a href="https://news.google.com/rss/articles/CBMiZ0FVX3lxTFBaaGlNU1BTa0ZESnJCcWhQVnB6anhtUDJOU28wYVhGTEJNcnNUbWdIeFRyUGpzMkFhR0dMbmg5Y2lCa3JHcDBmQ1NGYnZRcjJhOWdMMHVHUHp1V2dmZmtRcU9qTVpCOXM?oc=5" rel="noopener noreferrer"&gt;Introducing Claude for Small Business - Anthropic&lt;/a&gt;, targeting the small and medium-sized market segment that had been previously overlooked. Simultaneously, a deeper AWS integration launched Claude Platform — natively deployed through AWS accounts, opening the trust chain of enterprises' existing cloud infrastructure&lt;a href="https://news.google.com/rss/articles/CBMizgFBVV95cUxQUmZxSGR3dWhwMkRBNVgwSl91ZFVRLVptdTVhUERmcmF3dVROU21WT2hTeGExWldvNDBpN2RaNDY5MmxEa1llWGozcGRsZmNOeFJVLUFhVXoyYTlKMFhmWjc1dmRIckEyZVk4aTlGUk1jNGpuc2ZrMkhMN2xYRDM1dzBfWXN1SmtsRjRxaXJmYWtsMFJCb01UcEJkOWs2NEZGdWVhUjhmaktkLURIS0pnRzRham9JTldWNUREVmRLRERVNG1CLU5pSlBHbks2QQ?oc=5" rel="noopener noreferrer"&gt;Introducing Claude Platform on AWS: Anthropic's native platform, through your AWS account - Amazon Web Services (AWS)&lt;/a&gt;. More notable still: over &lt;strong&gt;20 legal domain connectors and 12 practice-area plugins&lt;/strong&gt; released the same week&lt;a href="https://news.google.com/rss/articles/CBMi2AFBVV95cUxOX19KNVMwRHMyM2lxaTlPMzExMjlIN21ZSldsVUo0RUVtVFFuYmV0S29DMmRtNDdsRjRnUWg3OFpJenRManVRVGhSaThlTUFKQnJPZUVUdGxwaF9URi1fd1dadkRIbG1CeGoybzdINGFUYjl5VjdhbGJxazNlTnBwY0taTlk3dUptdkZLU25PYzNqRTVsejhmRXVUelJtQWpubDNiemt2ekliMnY2RnBCWmQ1cHRMcjJRUEpmLXN0NTR6R2J5dVpRODF0RThkLW9Cb2Y0Q2pHNGY?oc=5" rel="noopener noreferrer"&gt;Anthropic Goes All-In on Legal, Releasing More Than 20 Connectors and 12 Practice-Area Plugins for Claude - LawSites&lt;/a&gt;, covering specific use cases such as e-discovery, contract analysis, and regulatory compliance. This isn't general-purpose capability — this is &lt;strong&gt;institutionalization of industry knowledge&lt;/strong&gt;.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;OpenAI&lt;/th&gt;
&lt;th&gt;Anthropic&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;This week's focus&lt;/td&gt;
&lt;td&gt;Consulting services (Deployment Company, $14B valuation)&lt;/td&gt;
&lt;td&gt;Ecosystem lock-in (AWS native integration, legal plugins)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Business logic&lt;/td&gt;
&lt;td&gt;Turning technology into deliverable projects&lt;/td&gt;
&lt;td&gt;Turning models into embeddable workflows&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Risk&lt;/td&gt;
&lt;td&gt;Gross margin diluted by services business&lt;/td&gt;
&lt;td&gt;High migration cost for vertical use cases&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  Apple × OpenAI Rift: The Dissipation of the Integration Dividend
&lt;/h2&gt;

&lt;p&gt;Bloomberg reported this week that the Apple-OpenAI alliance is deteriorating, potentially heading toward legal dispute&lt;a href="https://news.google.com/rss/articles/CBMiswFBVV95cUxNVTFQQWIwbUlnN3hVWXlZYmpZVnl6aUZPTTU4MWNldVhKdjZ6M2t0ckpGTnEybFltYzJzY2FKa0RKVnBsLWxYaTlYTEZKb19oVkZpc2ZCTjBZaHYzU29jTWZ2OGtQbmczRHNxMm93SUlYX0NvQWZ5T1FTYTRKQkUxZkhOaUdwSlVtNkdpYS1Vd3IxSE4zd3FnVnNFNFJfVElCZXo3RWNPSVQwS1dxdTZ3TWxjbw?oc=5" rel="noopener noreferrer"&gt;Apple-OpenAI Alliance Frays, Setting Up Possible Legal Fight - Bloomberg.com&lt;/a&gt;, and Reuters confirmed that same afternoon that OpenAI is exploring legal options&lt;a href="https://news.google.com/rss/articles/CBMisAFBVV95cUxNNlZZbWlPQmhLZEJnNXM3Yy1rLTdsUkg2NE5KMVhOejMyUERySElSNlVaVTMyeGQ5bTRTWEt3M2lManU0U2p0a2tVaVZVdGQzSC0yV0ozY0E3REN0QWpRTzRPbVdndTlael9JVW0yaGVXOFo1RnJSbm0weHZBaHBIaTFlQXRfbGVHY2MyRW5RdGRJZF9nU1VXeC16V3Z5RXQ3QTFEMDFOd1l1V0NjdDlTbA?oc=5" rel="noopener noreferrer"&gt;OpenAI explores legal options against Apple, source says - Reuters&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;This rift validates a structural problem: &lt;strong&gt;embedding AI into the OS layer does not create durable differentiation&lt;/strong&gt;. Apple needed differentiation; OpenAI needed distribution. Both parties' interests overlapped during the honeymoon period, but once the distribution problem was solved, Apple discovered it had not gained meaningfully more model capability than its competitors — users want AI itself, not "Apple-branded AI."&lt;/p&gt;

&lt;p&gt;Implication for engineering decision-makers: integration does not create moats. When selecting integration partners, the question to ask is "who controls the model iteration cadence," not "whose devices run fastest."&lt;/p&gt;




&lt;h2&gt;
  
  
  Anthropic's Long-Term Play: The 2028 Scenarios and the Gates Partnership
&lt;/h2&gt;

&lt;p&gt;Anthropic also released two long-term framework documents this week: a &lt;strong&gt;$200 million partnership&lt;/strong&gt; with the Bill Gates Foundation&lt;a href="https://news.google.com/rss/articles/CBMia0FVX3lxTE1UT25PT2ZVemEyNW5mY0RnYjlHa0NhUGw4cVlZWUNaaDdySnRMMXZXZVJMcHRKN25kRzBsVzNINFhUSHhmTGI4MU5JUDEtUVFLcEktM1VvbUZCc1RKUkhwcTFWY3gyWEdQMGZN?oc=5" rel="noopener noreferrer"&gt;Anthropic forms $200 million partnership with the Gates Foundation - Anthropic&lt;/a&gt;, and the "2028: Two Scenarios for Global AI Leadership" report&lt;a href="https://news.google.com/rss/articles/CBMiY0FVX3lxTE1sT0RLX2s1V19uaTlfN0w3NkhVX21TSEo3ZVR4VS10cEoxSThUT3dBR0NZTEptU0VIcERGcXB5SFZ3T1lPN1VxX1dTVngxVU55MEI3NzNWNm9PdFI4V1ZpVUlITQ?oc=5" rel="noopener noreferrer"&gt;2028: Two scenarios for global AI leadership - Anthropic&lt;/a&gt;. The former is resource allocation; the latter is narrative positioning.&lt;/p&gt;

&lt;p&gt;The specific details of the $200 million Gates Foundation partnership have not been fully disclosed, but given Anthropic's recent cadence of publications on safety and governance, the funds are primarily directed toward &lt;strong&gt;AI safety research and applications in global health and development&lt;/strong&gt; — not product R&amp;amp;D. This signals that Anthropic is building a narrative framework broader than commercial products: positioning itself as an institutional player capable of dialogue with sovereign nations, foundations, and academia, rather than merely a model API company.&lt;/p&gt;

&lt;p&gt;The "2028 Scenarios" report attempts to define the pathways for AI development — a form of &lt;strong&gt;narrative positioning&lt;/strong&gt;, establishing dialogue frameworks ahead of regulators and policymakers. Similar strategies are visible in major vendors that have published AI ethics guidelines, but Anthropic chose the form of a "decade-long prediction" rather than a "principles declaration" — more ambiguous language, but longer reach.&lt;/p&gt;




&lt;h2&gt;
  
  
  Codex Windows Sandbox: Security Is Not a Feature, It Is a Cost
&lt;/h2&gt;

&lt;p&gt;OpenAI released two technical articles this week on safely deploying Codex in Windows environments&lt;a href="https://news.google.com/rss/articles/CBMiWkFVX3lxTE1kczJ5ZkJycGgxS2NZVDhvMTAzd2M2MlVWOTdLSUhJUkhZMHhYVEluQVlRbE9VMFU5dlBoM25kaGRPcFFYbFltb3QyMTM4NGxzU19DWDlST1ZOdw?oc=5" rel="noopener noreferrer"&gt;Running Codex safely at OpenAI - OpenAI&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMiZ0FVX3lxTE4wMlR1RTU1M3ZSMkpvdWtPY0t2R2hTVUJ3ZG5WcmlkSl9jdlZucE91TWdWRmViSDkwN2MtRkVjWFpQQlJFcktYTHJJc1dmLUROMU1yWnhaYjAyZDQtb0VDbmNlSHRYbW8?oc=5" rel="noopener noreferrer"&gt;Building a safe, effective sandbox to enable Codex on Windows - OpenAI&lt;/a&gt;, focused on establishing a secure sandbox environment enabling AI agents to execute code within enterprise Windows environments.&lt;/p&gt;

&lt;p&gt;There is a fundamental contradiction between the highly privileged state of Microsoft enterprise environments and the unpredictable behavior of AI agents. OpenAI's response is "we will build an isolation layer" — which means that when models enter enterprise workflows, code execution security is no longer optional, it is a rigid requirement factored into deployment costs. Currently, when enterprises evaluate AI vendors, sandbox construction costs are often not listed separately — yet this cost precisely measures the real distance between "model capability" and "delivery capability."&lt;/p&gt;

&lt;p&gt;Question for CTOs: If your vendor tells you that you need to build your own sandbox environment to safely use their model, has that engineering cost been accounted for?&lt;/p&gt;




&lt;h2&gt;
  
  
  Regulatory Pressure: The Legal Vector Is Accelerating
&lt;/h2&gt;

&lt;p&gt;Sam Altman testified this week in the Elon Musk lawsuit&lt;a href="https://news.google.com/rss/articles/CBMikgFBVV95cUxNWjJhaUZZZENCZ2JQdEU2eDlJeVhlSnpUa2RPWXFnWmhTNVFhZV9RZnNreWNCck92MExZTENqbnhvY2xKUFR4ZHVlMTdzeXZvb0o2UlM4aXMyODczQnlsZGpzWDFrT1E2eEFMM1VoalVzd1BzVi1UV0cyMHBQYnZTYXc5MXZSejhaN3hHT09ZbzFidw?oc=5" rel="noopener noreferrer"&gt;OpenAI's Sam Altman takes the stand to fend off Elon Musk's accusations he 'stole a charity' - NPR&lt;/a&gt;, and a wrongful death class action against OpenAI is testing new litigation strategies&lt;a href="https://news.google.com/rss/articles/CBMiiAFBVV95cUxOcF9BWnVjNHBqSUJ0a1NLcHlKR1NwSW9yQjVrVENOZU1aYThfeWZqc3ZyZU5XS19NcVRnUmRRRklvVVR3cU5jU1NEcExfMnBCVG51WmJlb0c4dDFQN1pLd0hWTXVDMlJUQmk3YllGUWVaWTVleGRScFFMN0pZMnJLZ0cxMl8zc3lk?oc=5" rel="noopener noreferrer"&gt;Wrongful Death Lawsuits Against OpenAI Test a New Strategy - The New York Times&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The "novelty" of this class action strategy lies in it being neither patent infringement nor breach of contract — it attempts to pursue AI decision consequences through a &lt;strong&gt;tort law framework&lt;/strong&gt;. If this litigation path establishes any degree of precedent in the future, it will have profound implications for product launch decisions across all AI vendors — not just OpenAI.&lt;/p&gt;




&lt;h2&gt;
  
  
  An Underappreciated Technical Development: Indicator-Based UI Experiments
&lt;/h2&gt;

&lt;p&gt;Google DeepMind published research this week presenting a concrete problem: "reimagining the mouse pointer"&lt;a href="https://news.google.com/rss/articles/CBMiUkFVX3lxTFBHRGNqaEY2Z1g3Z3lBaDBPT05Ra2V0aEVfQ0QtSVFLNjl4Qno4UWNfOWdRMjVKeFFPbUVncDdHamNuM0dhZTc5N2FpZTRJQUZ3NlE?oc=5" rel="noopener noreferrer"&gt;Shaping the future of AI interaction by reimagining the mouse pointer - Google DeepMind&lt;/a&gt;: in the era of multimodal models, does the human-AI interaction interface still need to conform to the WIMP paradigm (Windows, Icons, Menus, Pointer) designed in the 1960s?&lt;/p&gt;

&lt;p&gt;This research remains at the publication stage, at least one major revision cycle away from a shippable product, but it signals Google's long-term bet on &lt;strong&gt;perception-driven interface redesign&lt;/strong&gt;. If whoever redefines the pointer defines the next generation UI standard, then model capability competition will be replaced by interface competition — and interface standard-setting authority belongs to institutional players, not pure technical teams. This framework echoes the moves by OpenAI and Anthropic this week: hardware and model release cadences are being caught up to by institutional and integration velocity.&lt;/p&gt;




&lt;p&gt;This week's conclusion: OpenAI discovered its most valuable asset is not the model but deployment capability; Anthropic discovered its deepest moat is not capability but the speed of encapsulating industry knowledge. Both directions point to the same conclusion: &lt;strong&gt;the next bottleneck in AI is not how powerful models become, but who can fastest turn models into indispensable links in workflows&lt;/strong&gt;.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>tech</category>
      <category>llm</category>
    </item>
    <item>
      <title>AI 週報 — 2026-05-08 to 2026-05-15 | OpenAI 做顧問、Anthropic 做生態，模型公司集體轉向</title>
      <dc:creator>Yang Goufang</dc:creator>
      <pubDate>Fri, 15 May 2026 02:10:50 +0000</pubDate>
      <link>https://dev.to/yang_goufang_23c7ba674984/ai-zhou-bao-2026-05-08-2026-05-15openai-zuo-gu-wen-anthropic-zuo-sheng-tai-mo-xing-gong-si-ji-ti-zhuan-xiang-n81</link>
      <guid>https://dev.to/yang_goufang_23c7ba674984/ai-zhou-bao-2026-05-08-2026-05-15openai-zuo-gu-wen-anthropic-zuo-sheng-tai-mo-xing-gong-si-ji-ti-zhuan-xiang-n81</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;本週一句話：OpenAI 正在變成一家顧問公司，Anthropic 正在變成一家平台公司——兩者都不約同時放棄了「模型即產品」的故事。&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  模型公司集體轉向：從 API 銷售到制度性資源
&lt;/h2&gt;

&lt;p&gt;140 億美元——這是 OpenAI 對其新建「Deployment Company」的估值，聲稱來自同一週的外部融資談判&lt;a href="https://news.google.com/rss/articles/CBMickFVX3lxTE95QnZPQkxzLW9WdHJLbUplMUo3dHgyY0JSNmJfdkRzdXlaU2ZUdGw2VEFyM3NXQ1VNYTBqR3Jnem5DQk9MV3NQZm5MM3NtbVo3d19xNlhsWnNkMFFaTGhkZDVrZmJOZTVObzBKOGZQbmd4Zw?oc=5" rel="noopener noreferrer"&gt;OpenAI launches the OpenAI Deployment Company to help businesses build around intelligence - OpenAI&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMicEFVX3lxTE51QUtsM0czTWtzWXBfMEw2amtqdEhOUFlDNUh4UXRtYmM2VUZRQ0NiQXVMclBnSE9tM0t5SWwwTVBRZUx4WWVkNGJFVDdncVZwRURnOVlyYmFKZkZYYVBGZnE3bE9VRnAyVzQyVzFzbjU?oc=5" rel="noopener noreferrer"&gt;OpenAI launches AI consulting arm valued at $14 billion - Axios&lt;/a&gt;。對比之下，支撐這家公司估值基礎的旗艦 API 業務從未獲得過這樣的外部估值肯定。市場在告訴 OpenAI：你最值錢的資產不是模型，是交付能力。&lt;/p&gt;

&lt;p&gt;5/11 OpenAI 宣佈成立 Deployment Company，同日 Axios 報導該部門估值。同一時間，OpenAI 營收負責人 Dresser 對 CNBC 表示企業 AI 採用已達「臨界點」，但他所指的不是需求爆發，而是&lt;strong&gt;交付複雜度&lt;/strong&gt;&lt;a href="https://news.google.com/rss/articles/CBMifEFVX3lxTE56YkNzZ0NCdElkekVKSncwNVY2WmlBQzd1S3pvSkYxOXNFdW52MWN6MHFQV21sa0FaLVJqbEl0Zm9OczQ2ZGI4cVM1SFowenMyYzNKb3RydjBWNE1NNV9NUi1sZk9BZFlra3FrNUo0RUU5VWhpNVpJX2RYamrSAYIBQVVfeXFMT2RQNWJ3OC1vbGFKLWVWekdWNl9pc1htREFvRXBKUFNjM1NTWHpMb0RPMlkxOXZEUW1kYWZ4MDVTeGhMbjdYbFBlVG9jdk8xNWplRnliMmtxUnktS25tTTZjOGhfXzk2djI4UEJXRHBuTkhleGIzUXVlN1BfRjVjNUN0QQ?oc=5" rel="noopener noreferrer"&gt;OpenAI revenue chief Dresser says enterprise AI adoption is 'at a tipping point' - CNBC&lt;/a&gt;。這與 Accenture Federal Services 的聯邦政府合作（涉及安全合規與法規約束）和 Fiserv 的金融機構合作形成同一敘事：企業要的不是 API，而是有人幫他們把 API 變成合規、可靠、可解釋的系統&lt;a href="https://news.google.com/rss/articles/CBMixgFBVV95cUxPbjFnd0JPT1JzcGRGbThyUm9MWUJxeUtVbGJycmNRUl9YVDZYSktBaFh0XzVicU1zMDA1ZzN4T1JLRmpOSGJsUUJocjZHUXY2SThrcmlHYjNiLVJ3VGE4dVVKZ1RxdlNRaGJvaDJvLXJRM18wZVZ3ZkpkZkRIOEpweFMzODNzMEhjcXBKWE5xN25TTWEwdl9IZGh4bmRRek1MMmZJdnpEd2lMSXhGTUxGQWRjdXZidGREYkZIZ0lCbThKakdQamc?oc=5" rel="noopener noreferrer"&gt;Fiserv Forms Strategic Collaboration with OpenAI to Bring AI to How Fiserv Serves Financial Institutions - Fiserv&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMi4wFBVV95cUxPMXVOODM4dTQxa1dicnZpTWJpcXJ1T0dEd2FUaDM2Mi1FNDVsOVZhWnZONW1pX0UwQ2xJdGVNUzQwTUZDRnVpYUJZLVAwbjg2YkF2U0EzVnpNVUVkc04wQnFmQkNneEhJX0dKUlRsVnM5MFkzdnJ5T0YtbHZSOG5VQkpSSG1RbGs0blpTbjl4S0Q0NW1qeGplYVJlVjF1MHhpMHVRbVBYLU5KaEtCRUpONDFCeXNYdzJVenNyZUtoUVVzVzNHbDdIeXFSVm5LVUdIUnFwZmk1ZlRWYTFadjNWekpmdw?oc=5" rel="noopener noreferrer"&gt;Accenture Federal Services and OpenAI Partner to Accelerate Secure AI Adoption Across the Federal Government - Accenture&lt;/a&gt;。&lt;/p&gt;

&lt;p&gt;Anthropic 的回應則是另一條路：&lt;strong&gt;生態鎖定&lt;/strong&gt;。&lt;/p&gt;

&lt;p&gt;本週 Anthropic 發布 Claude for Small Business&lt;a href="https://news.google.com/rss/articles/CBMiZ0FVX3lxTFBaaGlNU1BTa0ZESnJCcWhQVnB6anhtUDJOU28wYVhGTEJNcnNUbWdIeFRyUGpzMkFhR0dMbmg5Y2lCa3JHcDBmQ1NGYnZRcjJhOWdMMHVHUHp1V2dmZmtRcU9qTVpCOXM?oc=5" rel="noopener noreferrer"&gt;Introducing Claude for Small Business - Anthropic&lt;/a&gt;，瞄準過去被忽略的中小型市場；同時與 AWS 深度整合推出 Claude Platform——原生透過 AWS 帳戶部署，打通了企業既有雲端基礎設施的信任鏈&lt;a href="https://news.google.com/rss/articles/CBMizgFBVV95cUxQUmZxSGR3dWhwMkRBNVgwSl91ZFVRLVptdTVhUERmcmF3dVROU21WT2hTeGExWldvNDBpN2RaNDY5MmxEa1llWGozcGRsZmNOeFJVLUFhVXoyYTlKMFhmWjc1dmRIckEyZVk4aTlGUk1jNGpuc2ZrMkhMN2xYRDM1dzBfWXN1SmtsRjRxaXJmYWtsMFJCb01UcEJkOWs2NEZGdWVhUjhmaktkLURIS0pnRzRham9JTldWNUREVmRLRERVNG1CLU5pSlBHbks2QQ?oc=5" rel="noopener noreferrer"&gt;Introducing Claude Platform on AWS: Anthropic’s native platform, through your AWS account - Amazon Web Services (AWS)&lt;/a&gt;。更值得注意的是同週的 &lt;strong&gt;20+ 法律領域連接器與 12 個實務插件&lt;/strong&gt;發布&lt;a href="https://news.google.com/rss/articles/CBMi2AFBVV95cUxOX19KNVMwRHMyM2lxaTlPMzExMjlIN21ZSldsVUo0RUVtVFFuYmV0S29DMmRtNDdsRjRnUWg3OFpJenRManVRVGhSaThlTUFKQnJPZUVUdGxwaF9URi1fd1dadkRIbG1CeGoybzdINGFUYjl5VjdhbGJxazNlTnBwY0taTlk3dUptdkZLU25PYzNqRTVsejhmRXVUelJtQWpubDNiemt2ekliMnY2RnBCWmQ1cHRMcjJRUEpmLXN0NTR6R2J5dVpRODF0RThkLW9Cb2Y0Q2pHNGY?oc=5" rel="noopener noreferrer"&gt;Anthropic Goes All-In on Legal, Releasing More Than 20 Connectors and 12 Practice-Area Plugins for Claude - LawSites&lt;/a&gt;，覆蓋電子發現、合同分析、監管合規等具體場景。這不是通用能力，這是&lt;strong&gt;行業知識的制度化&lt;/strong&gt;。&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;OpenAI&lt;/th&gt;
&lt;th&gt;Anthropic&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;本週重心&lt;/td&gt;
&lt;td&gt;顧問服務（Deployment Company, $14B 估值）&lt;/td&gt;
&lt;td&gt;生態鎖定（AWS 原生整合、法律插件）&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;商業邏輯&lt;/td&gt;
&lt;td&gt;把技術變成可交付的專案&lt;/td&gt;
&lt;td&gt;把模型變成可嵌入的工作流程&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;風險&lt;/td&gt;
&lt;td&gt;毛利率被服務業務稀釋&lt;/td&gt;
&lt;td&gt;垂直場景遷移成本高&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  Apple × OpenAI 裂痕：整合紅利的消散
&lt;/h2&gt;

&lt;p&gt;Bloomberg 本週報導 Apple 與 OpenAI 的聯盟正在惡化，可能走向法律糾紛&lt;a href="https://news.google.com/rss/articles/CBMiswFBVV95cUxNVTFQQWIwbUlnN3hVWXlZYmpZVnl6aUZPTTU4MWNldVhKdjZ6M2t0ckpGTnEybFltYzJzY2FKa0RKVnBsLWxYaTlYTEZKb19oVkZpc2ZCTjBZaHYzU29jTWZ2OGtQbmczRHNxMm93SUlYX0NvQWZ5T1FTYTRKQkUxZkhOaUdwSlVtNkdpYS1Vd3IxSE4zd3FnVnNFNFJfVElCZXo3RWNPSVQwS1dxdTZ3TWxjbw?oc=5" rel="noopener noreferrer"&gt;Apple-OpenAI Alliance Frays, Setting Up Possible Legal Fight - Bloomberg.com&lt;/a&gt;，Reuters 午後跟進證實 OpenAI 正在探詢法律選項&lt;a href="https://news.google.com/rss/articles/CBMisAFBVV95cUxNNlZZbWlPQmhLZEJnNXM3Yy1rLTdsUkg2NE5KMVhOejMyUERySElSNlVaVTMyeGQ5bTRTWEt3M2lManU0U2p0a2tVaVZVdGQzSC0yV0ozY0E3REN0QWpRTzRPbVdndTlael9JVW0yaGVXOFo1RnJSbm0weHZBaHBIaTFlQXRfbGVHY2MyRW5RdGRJZF9nU1VXeC16V3Z5RXQ3QTFEMDFOd1l1V0NjdDlTbA?oc=5" rel="noopener noreferrer"&gt;OpenAI explores legal options against Apple, source says - Reuters&lt;/a&gt;。&lt;/p&gt;

&lt;p&gt;這個裂痕印證了一個結構性問題：&lt;strong&gt;把 AI 整合進 OS 層並不能創造持久的差異化&lt;/strong&gt;。Apple 需要差異化，OpenAI 需要分發，雙方的利益在蜜月期重疊，但當分發問題解決後，Apple 發現自己並沒有因此獲得比競爭對手更多的模型能力——用戶要的是 AI 本身，不是「蘋果牌 AI」。&lt;/p&gt;

&lt;p&gt;對工程决策者的啟示：整合並不能創造護城河。選擇整合夥伴時，需要問的是「誰控制模型迭代的節奏」，而不是「誰的設備跑得最快」。&lt;/p&gt;




&lt;h2&gt;
  
  
  Anthropic 的長期策略：2028 場景與 Gates 合作
&lt;/h2&gt;

&lt;p&gt;Anthropic 本週同時發布兩個長期框架文件：與 Bill Gates 基金會的 &lt;strong&gt;2 億美元合作&lt;/strong&gt;&lt;a href="https://news.google.com/rss/articles/CBMia0FVX3lxTE1UT25PT2ZVemEyNW5mY0RnYjlHa0NhUGw4cVlZWUNaaDdySnRMMXZXZVJMcHRKN25kRzBsVzNINFhUSHhmTGI4MU5JUDEtUVFLcEktM1VvbUZCc1RKUkhwcTFWY3gyWEdQMGZN?oc=5" rel="noopener noreferrer"&gt;Anthropic forms $200 million partnership with the Gates Foundation - Anthropic&lt;/a&gt;，以及「2028：全球 AI 領導力的兩個場景」報告&lt;a href="https://news.google.com/rss/articles/CBMiY0FVX3lxTE1sT0RLX2s1V19uaTlfN0w3NkhVX21TSEo3ZVR4VS10cEoxSThUT3dBR0NZTEptU0VIcERGcXB5SFZ3T1lPN1VxX1dTVngxVU55MEI3NzNWNm9PdFI4V1ZpVUlITQ?oc=5" rel="noopener noreferrer"&gt;2028: Two scenarios for global AI leadership - Anthropic&lt;/a&gt;。前者是資源佈局，後者是話語權佈局。&lt;/p&gt;

&lt;p&gt;2 億美元的 Gates Foundation 合作具體內容未完全透明，但結合近期 Anthropic 在安全與治理方向的發文節奏，判斷這筆資金主要流向 &lt;strong&gt;AI safety research 與全球健康/發展領域的應用&lt;/strong&gt;，而不是產品研發。這意味著 Anthropic 正在建立一個比商業產品更寬廣的敘事框架：自己是能與主權國家、基金會、學術界對話的制度性玩家，而不只是一家模型 API 公司。&lt;/p&gt;

&lt;p&gt;「2028 場景」報告則試圖定義 AI 發展的路徑框架——這是一種&lt;strong&gt;敘事搶位&lt;/strong&gt;，搶在監管機構和政策制定者之前建立對話框架。類似的策略可見於過去制訂 AI 倫理指南的各大廠，但 Anthropic 選擇用「十年預測」而非「原則宣言」的形式，語言更模糊但射程更遠。&lt;/p&gt;




&lt;h2&gt;
  
  
  Codex Windows 沙箱：安全不是功能，是成本
&lt;/h2&gt;

&lt;p&gt;OpenAI 本週發布了兩篇關於 Codex 在 Windows 上安全部署的技術文章&lt;a href="https://news.google.com/rss/articles/CBMiWkFVX3lxTE1kczJ5ZkJycGgxS2NZVDhvMTAzd2M2MlVWOTdLSUhJUkhZMHhYVEluQVlRbE9VMFU5dlBoM25kaGRPcFFYbFltb3QyMTM4NGxzU19DWDlST1ZOdw?oc=5" rel="noopener noreferrer"&gt;Running Codex safely at OpenAI - OpenAI&lt;/a&gt;&lt;a href="https://news.google.com/rss/articles/CBMiZ0FVX3lxTE4wMlR1RTU1M3ZSMkpvdWtPY0t2R2hTVUJ3ZG5WcmlkSl9jdlZucE91TWdWRmViSDkwN2MtRkVjWFpQQlJFcktYTHJJc1dmLUROMU1yWnhaYjAyZDQtb0VDbmNlSHRYbW8?oc=5" rel="noopener noreferrer"&gt;Building a safe, effective sandbox to enable Codex on Windows - OpenAI&lt;/a&gt;，聚焦於如何建立一個安全的沙箱環境讓 AI 代理在企業 Windows 環境中執行代碼。&lt;/p&gt;

&lt;p&gt;微軟企業環境的高度特權狀態與 AI 代理的不可預測行為之間存在根本矛盾。OpenAI 的回應是「我們會建一個隔離層」——這意味著當模型要進入企業工作流程，代碼執行安全不再是可選功能，而是必須計入部署成本的剛性需求。目前企業在評估 AI 供應商時，沙箱建置成本往往未被獨立列出，而這筆成本正好衡量了「模型能力」與「交付能力」之間的真實距離。&lt;/p&gt;

&lt;p&gt;對 CTO 的問題：如果你的供應商告訴你需要自建沙箱環境才能安全使用他們的模型，這筆工程成本算進去了嗎？&lt;/p&gt;




&lt;h2&gt;
  
  
  監管壓力：法律向量正在加速累積
&lt;/h2&gt;

&lt;p&gt;Sam Altman 本週在馬斯克訴訟中作證&lt;a href="https://news.google.com/rss/articles/CBMikgFBVV95cUxNWjJhaUZZZENCZ2JQdEU2eDlJeVhlSnpUa2RPWXFnWmhTNVFhZV9RZnNreWNCck92MExZTENqbnhvY2xKUFR4ZHVlMTdzeXZvb0o2UlM4aXMyODczQnlsZGpzWDFrT1E2eEFMM1VoalVzd1BzVi1UV0cyMHBQYnZTYXc5MXZSejhaN3hHT09ZbzFidw?oc=5" rel="noopener noreferrer"&gt;OpenAI’s Sam Altman takes the stand to fend off Elon Musk’s accusations he ‘stole a charity’ - NPR&lt;/a&gt;，以及針對 OpenAI 的 wrongful death 集體訴訟正測試新的訴訟策略&lt;a href="https://news.google.com/rss/articles/CBMiiAFBVV95cUxOcF9BWnVjNHBqSUJ0a1NLcHlKR1NwSW9yQjVrVENOZU1aYThfeWZqc3ZyZU5XS19NcVRnUmRRRklvVVR3cU5jU1NEcExfMnBCVG51WmJlb0c4dDFQN1pLd0hWTXVDMlJUQmk3YllGUWVaWTVleGRScFFMN0pZMnJLZ0cxMl8zc3lk?oc=5" rel="noopener noreferrer"&gt;Wrongful Death Lawsuits Against OpenAI Test a New Strategy - The New York Times&lt;/a&gt;。&lt;/p&gt;

&lt;p&gt;集體訴訟策略的「新」在於它不是專利侵權或契約違約，而是嘗試用&lt;strong&gt;侵權法框架&lt;/strong&gt;追究 AI 的決策後果。如果這種訴訟路徑在未來能建立任何程度的先例，將對所有 AI 廠商的產品發布決策產生深遠影響——不只是 OpenAI 受傷。&lt;/p&gt;




&lt;h2&gt;
  
  
  一個被低估的技術動態：指標式 UI 實驗
&lt;/h2&gt;

&lt;p&gt;本週 Google DeepMind 發布 research 提出「重新想像滑鼠指標」的具體問題&lt;a href="https://news.google.com/rss/articles/CBMiUkFVX3lxTFBHRGNqaEY2Z1g3Z3lBaDBPT05Ra2V0aEVfQ0QtSVFLNjl4Qno4UWNfOWdRMjVKeFFPbUVncDdHamNuM0dhZTc5N2FpZTRJQUZ3NlE?oc=5" rel="noopener noreferrer"&gt;Shaping the future of AI interaction by reimagining the mouse pointer - Google DeepMind&lt;/a&gt;：在多模態模型時代，人與 AI 的互動介面是否仍然需要服從 1960 年代設計的 WIMP 範式（Windows, Icons, Menus, Pointer）？&lt;/p&gt;

&lt;p&gt;這組 research 目前停留在發布階段，距離可用產品至少還有一個 major revision cycle，但它暗示了 Google 對未來人機介面的長期赌注——&lt;strong&gt;感知驅動的界面重設計&lt;/strong&gt;。如果未來誰能重新定義指標誰就能定義下一代 UI 標準，那麼模型能力的競爭將被介面競爭取代，而介面標準的制訂權屬於制度性玩家，不屬於純技術團隊。這個框架與本週 OpenAI 和 Anthropic 的走向形成呼應：硬體與模型的發布節奏正在被制度和整合速度追上。&lt;/p&gt;




&lt;p&gt;本週結論：OpenAI 發現自己最值錢的資產不是模型而是部署能力，Anthropic 發現自己最深的護城河不是能力而是行業知識的封裝速度。兩個方向都指向同一個結論：&lt;strong&gt;AI 的下一個瓶頸不在於模型有多強，而在於誰能最快把模型變成工作流程中不可繞過的一環&lt;/strong&gt;。&lt;/p&gt;

</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>tech</category>
      <category>llm</category>
    </item>
    <item>
      <title>AI Weekly — 2026-05-08 | MS-OpenAI loosens, and the race moves to control</title>
      <dc:creator>Yang Goufang</dc:creator>
      <pubDate>Fri, 08 May 2026 01:51:07 +0000</pubDate>
      <link>https://dev.to/yang_goufang_23c7ba674984/ai-weekly-2026-05-08-ms-openai-loosens-and-the-race-moves-to-control-3eoc</link>
      <guid>https://dev.to/yang_goufang_23c7ba674984/ai-weekly-2026-05-08-ms-openai-loosens-and-the-race-moves-to-control-3eoc</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;One-line summary:&lt;/strong&gt; The most important story of the last two weeks was not another model getting slightly better. It was the Microsoft-OpenAI boundary being redrawn. AWS, FedRAMP, PwC, ChatGPT ads, Claude vertical agents, and Gemini's scene-by-scene expansion all point to the same shift: AI companies are turning model capability into control over deployment, compliance, workflow, cost, and monetization.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  1. Microsoft and OpenAI: this is not gossip; it is control
&lt;/h2&gt;

&lt;p&gt;The structural story of this issue is the next phase of the Microsoft-OpenAI partnership. OpenAI published its own note on that next phase &lt;a href="https://openai.com/index/next-phase-of-microsoft-partnership/" rel="noopener noreferrer"&gt;The next phase of the Microsoft OpenAI partnership - OpenAI&lt;/a&gt;. CNBC framed the change as OpenAI capping revenue-share payments to Microsoft &lt;a href="https://www.cnbc.com/2026/04/27/openai-microsoft-partnership-revenue-cap.html" rel="noopener noreferrer"&gt;OpenAI shakes up partnership with Microsoft, capping revenue share payments - CNBC&lt;/a&gt;. The New York Times used the phrase "loosen their partnership" &lt;a href="https://www.nytimes.com/2026/04/27/technology/microsoft-openai-partnership.html" rel="noopener noreferrer"&gt;Microsoft and OpenAI Loosen Their Partnership - nytimes.com&lt;/a&gt;. The Wall Street Journal added pressure from another direction: OpenAI reportedly missed key revenue and user targets during its high-stakes IPO sprint &lt;a href="https://www.wsj.com/tech/ai/openai-misses-key-revenue-user-targets-in-high-stakes-sprint-toward-ipo-94a95273" rel="noopener noreferrer"&gt;OpenAI Misses Key Revenue, User Targets in High-Stakes Sprint Toward IPO - WSJ&lt;/a&gt;. Another NYT headline asked whether OpenAI is falling further behind in the AI race &lt;a href="https://www.nytimes.com/2026/04/28/business/dealbook/openai-misses-targets.html" rel="noopener noreferrer"&gt;Is OpenAI Falling Further Behind in the A.I. Race? - nytimes.com&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;That is not "Microsoft versus OpenAI" gossip. It changes the practical landing surface. Who controls cloud deployment? Who owns the enterprise contract? Who has limits on model and product IP? Who carries the compute capex? Those questions eventually show up as procurement risk, cross-cloud flexibility, governance posture, and support reliability.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Layer&lt;/th&gt;
&lt;th&gt;What changes for enterprise buyers&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Commercial share&lt;/td&gt;
&lt;td&gt;A cap on revenue sharing suggests weaker economic coupling and more pressure for OpenAI-owned revenue channels&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cloud deployment&lt;/td&gt;
&lt;td&gt;A looser partnership makes multi-cloud and direct enterprise deployment more strategically important&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Product control&lt;/td&gt;
&lt;td&gt;IPO and growth pressure push OpenAI to package model capability into sellable products faster&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;This is why the rest of the issue should not be read as isolated announcements. AWS, FedRAMP, PwC, ChatGPT ads, and Codex orchestration are all part of the same control-plane response.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. OpenAI fills in the control plane: cloud, compliance, workflow, ads
&lt;/h2&gt;

&lt;p&gt;OpenAI moved across several fronts in the same window. None of them is just "one more feature."&lt;/p&gt;

&lt;p&gt;First: cloud and enterprise deployment. OpenAI announced that its models, Codex, and Managed Agents are coming to AWS &lt;a href="https://openai.com/index/openai-on-aws/" rel="noopener noreferrer"&gt;OpenAI models, Codex, and Managed Agents come to AWS - OpenAI&lt;/a&gt;. For enterprise teams, that is more important than model availability by itself. AWS is where procurement, IAM, network controls, data governance, and cost controls already live. If OpenAI wants less dependence on one cloud partner, multi-cloud availability is not a nice-to-have; it is table stakes.&lt;/p&gt;

&lt;p&gt;Second: government and regulated procurement. OpenAI announced FedRAMP Moderate availability &lt;a href="https://openai.com/index/openai-available-at-fedramp-moderate/" rel="noopener noreferrer"&gt;OpenAI available at FedRAMP Moderate - OpenAI&lt;/a&gt;. FedRAMP is not a capability benchmark. It is a buying threshold. It means the product can enter a subset of public-sector and regulated-enterprise workflows. That is less flashy than a new model, but harder commercially.&lt;/p&gt;

&lt;p&gt;Third: finance workflow. OpenAI and PwC announced a collaboration around the office of the CFO &lt;a href="https://openai.com/index/openai-pwc-finance-collaboration/" rel="noopener noreferrer"&gt;OpenAI and PwC collaborate to reimagine the office of the CFO - OpenAI&lt;/a&gt;, and PwC separately described an OpenAI-native finance function &lt;a href="https://www.pwc.com/us/en/about-us/newsroom/press-releases/pwc-openai-native-finance-function.html" rel="noopener noreferrer"&gt;PwC and OpenAI Build a First-of-Its-Kind OpenAI Native Finance Function - PwC&lt;/a&gt;. CFO workflows are not a natural extension of chat. They require permissions, auditability, data lineage, human review, and integration with ERP, reporting, approvals, and risk controls. The question is not whether the model can draft a finance memo. The question is whether it can sit inside the existing chain of accountability.&lt;/p&gt;

&lt;p&gt;Fourth: developer orchestration and infrastructure. OpenAI published Symphony, an open-source spec for Codex orchestration &lt;a href="https://openai.com/index/open-source-codex-orchestration-symphony/" rel="noopener noreferrer"&gt;An open-source spec for Codex orchestration: Symphony. - OpenAI&lt;/a&gt;, and separately discussed supercomputer networking for large-scale AI training &lt;a href="https://openai.com/index/mrc-supercomputer-networking/" rel="noopener noreferrer"&gt;Supercomputer networking to accelerate large scale AI training - OpenAI&lt;/a&gt;. The former is toolchain control. The latter is infrastructure control. Together, they show OpenAI filling both layers: workflow description on top, training and inference supply underneath.&lt;/p&gt;

&lt;p&gt;Fifth: monetization. OpenAI announced new ways to buy ChatGPT ads &lt;a href="https://openai.com/index/new-ways-to-buy-chatgpt-ads/" rel="noopener noreferrer"&gt;New ways to buy ChatGPT ads - OpenAI&lt;/a&gt;, alongside ad policies &lt;a href="https://openai.com/policies/ad-policies/" rel="noopener noreferrer"&gt;Ad policies - OpenAI&lt;/a&gt;. This will be read as an "ads in ChatGPT" controversy, but the operational point is sharper: if ChatGPT becomes a measurable, purchasable demand-generation surface, OpenAI is no longer only selling APIs and subscriptions. That changes product incentives, and it raises new questions around data use, brand safety, and governance.&lt;/p&gt;

&lt;p&gt;The shared language across these moves is control. OpenAI needs less reliance on one partner and more ownership of deployment, compliance, workflow, and revenue surfaces.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Anthropic's vertical-agent week: enterprise motion, with honest cost and reliability signals
&lt;/h2&gt;

&lt;p&gt;Anthropic's two-week pattern is also clear: move Claude out of general chat and into vertical workflows.&lt;/p&gt;

&lt;p&gt;Security was the densest push. Claude Security emerged from closed preview with codebase vulnerability scanning &lt;a href="https://thenewstack.io/anthropics-claude-security-beta/" rel="noopener noreferrer"&gt;Anthropic's Claude Security emerges from closed preview to scan your codebases for vulnerabilities - The New Stack&lt;/a&gt;. SecurityWeek framed it as a response to an AI-powered exploit surge &lt;a href="https://www.securityweek.com/anthropic-unveils-claude-security-to-counter-ai-powered-exploit-surge/" rel="noopener noreferrer"&gt;Anthropic Unveils Claude Security to Counter AI-Powered Exploit Surge - SecurityWeek&lt;/a&gt;, and CRN covered it from an enterprise buying angle &lt;a href="https://www.crn.com/news/security/2026/anthropic-launches-claude-security-5-things-to-know" rel="noopener noreferrer"&gt;Anthropic Launches Claude Security: 5 Things To Know - crn.com&lt;/a&gt;. This is a plausible landing zone. Security teams already have triage, scanning, review, and remediation flows. If an agent can attach to repos, tickets, and CI/CD, its value is easier to measure than a general assistant's.&lt;/p&gt;

&lt;p&gt;Finance and professional services formed the second line. Anthropic announced agents for financial services &lt;a href="https://www.anthropic.com/news/finance-agents" rel="noopener noreferrer"&gt;Agents for financial services - Anthropic&lt;/a&gt;, then announced a new enterprise AI services company with Blackstone, Hellman &amp;amp; Friedman, and Goldman Sachs &lt;a href="https://www.anthropic.com/news/enterprise-ai-services-company" rel="noopener noreferrer"&gt;Building a new enterprise AI services company with Blackstone, Hellman &amp;amp; Friedman, and Goldman Sachs - Anthropic&lt;/a&gt;. Read together, Anthropic is not just selling models to finance. It is trying to wrap models in consulting, compliance, governance, and services channels. Slower, but easier to buy.&lt;/p&gt;

&lt;p&gt;Creative work and developer workflow formed the third line. Claude for Creative Work &lt;a href="https://www.anthropic.com/news/claude-for-creative-work" rel="noopener noreferrer"&gt;Claude for Creative Work - Anthropic&lt;/a&gt; and Claude Code Auto Mode with human approval gates &lt;a href="https://www.infoq.com/news/2026/05/anthropic-claude-code-auto-mode/" rel="noopener noreferrer"&gt;Inside Claude Code Auto Mode: Anthropic’s Autonomous Coding System with Human Approval Gates - infoq.com&lt;/a&gt; point to the same product philosophy: let the agent do more, but keep explicit human approval points. That is much closer to what enterprises can actually adopt than "full autonomy." Automation is attractive; auditability, interruptibility, and decision traces are mandatory.&lt;/p&gt;

&lt;p&gt;The most useful Anthropic signals, however, were negative. Business Insider reported that Anthropic quietly doubled its estimate for what engineers can expect to spend on Claude Code tokens &lt;a href="https://www.businessinsider.com/anthropic-claude-code-token-estimates-2026-4" rel="noopener noreferrer"&gt;Anthropic quietly doubles its estimate for how much engineers can expect to spend on Claude Code tokens - Business Insider&lt;/a&gt;. Fortune reported that Anthropic attributed Claude Code's monthlong decline to engineering missteps after weeks of user backlash &lt;a href="https://fortune.com/2026/04/24/anthropic-engineering-missteps-claude-code-performance-decline-user-backlash/" rel="noopener noreferrer"&gt;Anthropic says engineering missteps were behind Claude Code’s monthlong decline after weeks of user backlash - Fortune&lt;/a&gt;. Those belong next to the launches, not in a footnote.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Anthropic signal&lt;/th&gt;
&lt;th&gt;Positive read&lt;/th&gt;
&lt;th&gt;Cost that still has to be managed&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Claude Security&lt;/td&gt;
&lt;td&gt;Security triage can enter real workflow&lt;/td&gt;
&lt;td&gt;false positives, remediation ownership, CI integration&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Financial-services agents&lt;/td&gt;
&lt;td&gt;high-value workflows with budget&lt;/td&gt;
&lt;td&gt;compliance, data isolation, audit, human review&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Claude Code Auto Mode&lt;/td&gt;
&lt;td&gt;stronger automation with approval gates&lt;/td&gt;
&lt;td&gt;token cost, reliability, rollback, accountability&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Claude Code cost/quality issues&lt;/td&gt;
&lt;td&gt;honest signal from real usage&lt;/td&gt;
&lt;td&gt;agents still hit latency, cost, and stability limits&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;My read: Anthropic's enterprise strategy is directionally right, but Claude Code's cost and quality swings are the practical warning. Agents are not "turn it on and save headcount." They are workflow components that need SRE-style treatment: observability, quotas, approval gates, and fallbacks.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Google's test: Gemini has to prove it is more than an everywhere button
&lt;/h2&gt;

&lt;p&gt;Google's two-week story is Gemini being pushed into many surfaces. The market question is simple: which ones become workflows, and which ones are just entry points?&lt;/p&gt;

&lt;p&gt;The most technically meaningful item is AlphaEvolve. Google DeepMind described it as a Gemini-powered coding agent scaling impact across fields &lt;a href="https://deepmind.google/blog/alphaevolve-impact/" rel="noopener noreferrer"&gt;AlphaEvolve: Gemini-powered coding agent scaling impact across fields - Google DeepMind&lt;/a&gt;. Read carefully: if it is a research showcase, it is a technical direction; if it enters internal or external engineering workflows, it becomes product. The key questions are not benchmark numbers. Does it attach to issue trackers, repos, CI, and review policy? Who owns the failure mode?&lt;/p&gt;

&lt;p&gt;Cars are another high-value surface. GM said it is bringing Google Gemini to millions of vehicles on the road &lt;a href="https://news.gm.com/home.detail.html/Pages/news/us/en/2026/apr/0428-Google-Gemini.html" rel="noopener noreferrer"&gt;GM brings Google Gemini to millions of vehicles on the road - General Motors&lt;/a&gt;, and Google's own blog said cars with Google built in are about to get smarter thanks to Gemini &lt;a href="https://blog.google/products-and-platforms/platforms/android/cars-with-google-built-in-gemini-tips-2026/" rel="noopener noreferrer"&gt;Your car with Google built-in is about to get smarter, thanks to Gemini - blog.google&lt;/a&gt;. In cars, the value is not chat. It is navigation, vehicle state, voice control, and service integration. The constraints are hard: latency, offline behavior, privacy, driver distraction, and liability.&lt;/p&gt;

&lt;p&gt;Healthcare is more sensitive. Google DeepMind published research on an AI co-clinician &lt;a href="https://deepmind.google/blog/ai-co-clinician/" rel="noopener noreferrer"&gt;AI co-clinician: researching the path toward AI-augmented care - Google DeepMind&lt;/a&gt;. This must be labeled research, not product. Clinical workflows require validation, accountability, data governance, and physician fit. A convincing demo is not enough.&lt;/p&gt;

&lt;p&gt;The consumer side is a stack of Gemini app expansion: April's Gemini Drop &lt;a href="https://blog.google/innovation-and-ai/products/gemini-app/gemini-drop-april-2026/" rel="noopener noreferrer"&gt;Find out what’s new in the Gemini app in April's Gemini Drop. - blog.google&lt;/a&gt;, file generation for Google Docs/PDF/Word &lt;a href="https://9to5google.com/2026/04/29/gemini-app-generate-files/" rel="noopener noreferrer"&gt;Gemini app can now generate Google Docs, PDF, Word, and other files - 9to5Google&lt;/a&gt; &lt;a href="https://blog.google/innovation-and-ai/products/gemini-app/generate-files-in-gemini/" rel="noopener noreferrer"&gt;You can now easily generate files in Gemini. - blog.google&lt;/a&gt;, UK personalization features &lt;a href="https://blog.google/company-news/inside-google/around-the-globe/google-europe/united-kingdom/gemini-launches-new-personalisation-features-in-the-uk/" rel="noopener noreferrer"&gt;Gemini launches new personalisation features in the UK - blog.google&lt;/a&gt;, proactive assistance and new voices reportedly in preparation &lt;a href="https://9to5google.com/2026/04/27/gemini-proactive-assistance/" rel="noopener noreferrer"&gt;Gemini app preps ‘Proactive Assistance’ and new Gemini voices - 9to5Google&lt;/a&gt;, and hints of usage limits / AI Ultra Lite &lt;a href="https://9to5google.com/2026/05/05/google-ai-ultra-lite-gemini-usage-limits/" rel="noopener noreferrer"&gt;Google readies ‘AI Ultra Lite’ plan and explicit ‘usage limits’ for Gemini - 9to5Google&lt;/a&gt;. The direction is obvious: Google is making Gemini a daily surface. But surface area is not the same as workflow depth. Repeated work requires data, permissions, audit, rollback, and responsibility.&lt;/p&gt;

&lt;p&gt;Finally, Business Insider reported that Google is building an AI agent that could answer OpenClaw &lt;a href="https://www.businessinsider.com/google-ai-agent-openclaw-remy-gemini-assistant-2026-5" rel="noopener noreferrer"&gt;Google Is Building an AI Agent That Could Be Its Answer to OpenClaw - Business Insider&lt;/a&gt;, while 9to5Google found traces of a Gemini Agent positioned as a "24/7 digital partner" &lt;a href="https://9to5google.com/2026/05/06/gemini-agent-planner-upgrade/" rel="noopener noreferrer"&gt;Google preps ‘Gemini Agent’ as your ’24/7 digital partner’ - 9to5Google&lt;/a&gt;. If it ships, Google will move directly into agent-OS competition. Until then, treat it as a direction signal.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Bottom line: model competition is becoming control-plane competition
&lt;/h2&gt;

&lt;p&gt;Put April 25 through May 8 on one board and the main story is not "who won, OpenAI, Anthropic, or Google." The better frame: all three are trying to attach model capability to control planes.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;OpenAI's control plane: cloud, public-sector compliance, finance workflow, ads, and agent orchestration.&lt;/li&gt;
&lt;li&gt;Anthropic's control plane: security, finance, creative work, and coding agents, with cost and reliability warnings attached.&lt;/li&gt;
&lt;li&gt;Google's control plane: existing surfaces — cars, Docs, Gemini app, clinical research, coding agents, and possibly a personal agent.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For engineering decision-makers, the useful takeaways are blunt:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Do not buy model capability alone; inspect deployment control.&lt;/strong&gt; AWS, FedRAMP, and enterprise-services partnerships are closer to procurement reality than model scores.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Do not treat agents as automatic headcount savings.&lt;/strong&gt; Claude Code's doubled token-cost estimate and monthlong decline are the counterexample.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Do not confuse an entry point with a workflow.&lt;/strong&gt; Gemini can appear everywhere and still fail to own repeated work unless it handles data, permissions, audit, rollback, and accountability.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Do not ignore ad surfaces.&lt;/strong&gt; ChatGPT ads can change OpenAI's product incentives and raise data-use and brand-safety questions.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The sentence to keep: model competition is still there, but the enterprise buying decision will increasingly be shaped by who controls deployment, compliance, cost, workflow, and revenue surfaces.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;stance: The 2026-05-08 issue frames AI competition as a shift from model capability to control planes, led by the MS-OpenAI reset and followed by enterprise deployment, vertical agents, and Gemini surfaces.
key_links:
  - https://openai.com/index/next-phase-of-microsoft-partnership/
  - https://openai.com/index/openai-on-aws/
  - https://www.infoq.com/news/2026/05/anthropic-claude-code-auto-mode/
  - https://deepmind.google/blog/alphaevolve-impact/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>tech</category>
      <category>llm</category>
    </item>
    <item>
      <title>AI 週報 — 2026-05-08 MS-OpenAI 合作鬆動，AI 競賽轉向控制面</title>
      <dc:creator>Yang Goufang</dc:creator>
      <pubDate>Fri, 08 May 2026 01:51:04 +0000</pubDate>
      <link>https://dev.to/yang_goufang_23c7ba674984/ai-zhou-bao-2026-05-08ms-openai-he-zuo-song-dong-ai-jing-sai-zhuan-xiang-kong-zhi-mian-3355</link>
      <guid>https://dev.to/yang_goufang_23c7ba674984/ai-zhou-bao-2026-05-08ms-openai-he-zuo-song-dong-ai-jing-sai-zhuan-xiang-kong-zhi-mian-3355</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;本週一句話摘要：&lt;/strong&gt; 這兩週最重要的不是哪個模型又強了一點，而是 OpenAI 與 Microsoft 的合作邊界開始重畫；後面的 AWS、FedRAMP、PwC、廣告、Claude 垂直代理、Google Gemini 場景化，都像是同一件事的不同側面：AI 公司正在把「模型能力」改造成「可被企業採購、治理、部署、付費」的完整控制面。&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  1. OpenAI 和 Microsoft：最結構性的變化不是八卦，是控制權
&lt;/h2&gt;

&lt;p&gt;本期最重要的事件，是 OpenAI 與 Microsoft 的合作進入下一階段。OpenAI 自己發布了「Microsoft OpenAI partnership」下一階段說明 &lt;a href="https://openai.com/index/next-phase-of-microsoft-partnership/" rel="noopener noreferrer"&gt;The next phase of the Microsoft OpenAI partnership - OpenAI&lt;/a&gt;；CNBC 的標題直接點出 OpenAI 調整與 Microsoft 的合作，並對 revenue share payment 設上限 &lt;a href="https://www.cnbc.com/2026/04/27/openai-microsoft-partnership-revenue-cap.html" rel="noopener noreferrer"&gt;OpenAI shakes up partnership with Microsoft, capping revenue share payments - CNBC&lt;/a&gt;；NYT 用「loosen their partnership」描述這個變化 &lt;a href="https://www.nytimes.com/2026/04/27/technology/microsoft-openai-partnership.html" rel="noopener noreferrer"&gt;Microsoft and OpenAI Loosen Their Partnership - nytimes.com&lt;/a&gt;；WSJ 則從另一側補了一刀：OpenAI 在衝刺 IPO 的高壓期，錯過部分收入與用戶目標 &lt;a href="https://www.wsj.com/tech/ai/openai-misses-key-revenue-user-targets-in-high-stakes-sprint-toward-ipo-94a95273" rel="noopener noreferrer"&gt;OpenAI Misses Key Revenue, User Targets in High-Stakes Sprint Toward IPO - WSJ&lt;/a&gt;。NYT 另一篇問題更直接：OpenAI 是否正在 AI 競賽中落後 &lt;a href="https://www.nytimes.com/2026/04/28/business/dealbook/openai-misses-targets.html" rel="noopener noreferrer"&gt;Is OpenAI Falling Further Behind in the A.I. Race? - nytimes.com&lt;/a&gt;。&lt;/p&gt;

&lt;p&gt;這不是「Microsoft vs OpenAI」的公司八卦。它直接影響工程落地：誰控制雲端部署、誰控制企業合約、誰拿到模型與產品的 IP 上限、誰承擔算力資本支出，最後都會回到客戶能不能穩定採購、能不能跨雲部署、能不能把模型放進既有治理流程。&lt;/p&gt;

&lt;p&gt;可以用三層看這個重排：&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;層級&lt;/th&gt;
&lt;th&gt;對企業客戶的實際影響&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;商業分潤&lt;/td&gt;
&lt;td&gt;revenue share 上限代表利益綁定可能下降，OpenAI 需要更多自有收入入口&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;雲端部署&lt;/td&gt;
&lt;td&gt;合作鬆動後，OpenAI 更有動機走多雲與直接企業部署&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;產品控制&lt;/td&gt;
&lt;td&gt;若 IPO 與成長壓力同步上升，OpenAI 會更快把模型能力包成可銷售產品&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;這也是為什麼本期不能只看單一發布。OpenAI 接下來一串動作都像補位：AWS、FedRAMP、PwC、ChatGPT ads、Codex orchestration，方向很一致。&lt;/p&gt;

&lt;h2&gt;
  
  
  2. OpenAI 的補位：從模型公司變成部署與收入控制面
&lt;/h2&gt;

&lt;p&gt;OpenAI 在這兩週同時推了幾條線，但每一條都不只是「多一個功能」。&lt;/p&gt;

&lt;p&gt;第一條是雲與企業部署。OpenAI 宣布其模型、Codex 與 Managed Agents 進入 AWS &lt;a href="https://openai.com/index/openai-on-aws/" rel="noopener noreferrer"&gt;OpenAI models, Codex, and Managed Agents come to AWS - OpenAI&lt;/a&gt;。對企業來說，這比單純「又支援一個模型」重要：AWS 是既有採購、權限、網路、資料治理與成本控管的主場。OpenAI 若要降低對單一雲端合作夥伴的依賴，多雲入口是必需品，不是加分項。&lt;/p&gt;

&lt;p&gt;第二條是政府與合規。OpenAI 宣布達到 FedRAMP Moderate &lt;a href="https://openai.com/index/openai-available-at-fedramp-moderate/" rel="noopener noreferrer"&gt;OpenAI available at FedRAMP Moderate - OpenAI&lt;/a&gt;。FedRAMP 不是能力 benchmark，而是採購門檻。它代表產品開始能進入一部分公共部門與受管制企業的標準流程。這種進展不會像新模型一樣有展示效果，但對商業化更硬。&lt;/p&gt;

&lt;p&gt;第三條是工作流與財務場景。OpenAI 與 PwC 合作重塑 CFO office &lt;a href="https://openai.com/index/openai-pwc-finance-collaboration/" rel="noopener noreferrer"&gt;OpenAI and PwC collaborate to reimagine the office of the CFO - OpenAI&lt;/a&gt;，PwC 也發布了「OpenAI Native Finance Function」說明 &lt;a href="https://www.pwc.com/us/en/about-us/newsroom/press-releases/pwc-openai-native-finance-function.html" rel="noopener noreferrer"&gt;PwC and OpenAI Build a First-of-Its-Kind OpenAI Native Finance Function - PwC&lt;/a&gt;。CFO 場景不是聊天機器人的自然延伸，它要求權限、審計、資料 lineage、人工覆核與系統整合。這裡的真正問題不是模型能不能寫出財務分析，而是它能不能被放進現有 ERP、報表、審批與風控鏈。&lt;/p&gt;

&lt;p&gt;第四條是開發者與代理編排。OpenAI 發布 Symphony 這個 Codex orchestration 開源規格 &lt;a href="https://openai.com/index/open-source-codex-orchestration-symphony/" rel="noopener noreferrer"&gt;An open-source spec for Codex orchestration: Symphony. - OpenAI&lt;/a&gt;，並另外談了大規模訓練的 supercomputer networking &lt;a href="https://openai.com/index/mrc-supercomputer-networking/" rel="noopener noreferrer"&gt;Supercomputer networking to accelerate large scale AI training - OpenAI&lt;/a&gt;。前者是工具鏈控制，後者是基礎設施控制。把兩件事放一起看，OpenAI 在補的是上下兩層：上層讓 agent workflow 可被描述與編排，下層確保訓練與推理供給能支撐產品節奏。&lt;/p&gt;

&lt;p&gt;第五條是收入入口。OpenAI 發布 ChatGPT ads 的新購買方式 &lt;a href="https://openai.com/index/new-ways-to-buy-chatgpt-ads/" rel="noopener noreferrer"&gt;New ways to buy ChatGPT ads - OpenAI&lt;/a&gt;，也同步有 ad policies &lt;a href="https://openai.com/policies/ad-policies/" rel="noopener noreferrer"&gt;Ad policies - OpenAI&lt;/a&gt;。這件事很容易被看成「廣告化」爭議，但工程決策者應該看另一個點：如果 ChatGPT 變成可投放、可衡量、可採購的商業入口，OpenAI 的產品就不只賣 API 或訂閱，而是直接碰到 demand generation。這會改變產品優先順序，也會改變企業客戶對資料使用、品牌安全與治理的要求。&lt;/p&gt;

&lt;p&gt;這一組動作的共同語言是：OpenAI 需要更少依賴單一夥伴，更多掌握自己的部署、合規、工作流與營收入口。它不是同時做很多事，而是在補「合作鬆動」之後必須自己承擔的控制面。&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Anthropic 的垂直代理週：進企業現場，也承認成本與可靠性問題
&lt;/h2&gt;

&lt;p&gt;Anthropic 這兩週的節奏也很清楚：把 Claude 從通用聊天推進垂直工作流。&lt;/p&gt;

&lt;p&gt;安全場景最密集。Claude Security 從 closed preview 走出來，主打掃描 codebase vulnerability &lt;a href="https://thenewstack.io/anthropics-claude-security-beta/" rel="noopener noreferrer"&gt;Anthropic's Claude Security emerges from closed preview to scan your codebases for vulnerabilities - The New Stack&lt;/a&gt;，SecurityWeek 也以「counter AI-powered exploit surge」描述這個發布 &lt;a href="https://www.securityweek.com/anthropic-unveils-claude-security-to-counter-ai-powered-exploit-surge/" rel="noopener noreferrer"&gt;Anthropic Unveils Claude Security to Counter AI-Powered Exploit Surge - SecurityWeek&lt;/a&gt;，CRN 做了企業採購角度整理 &lt;a href="https://www.crn.com/news/security/2026/anthropic-launches-claude-security-5-things-to-know" rel="noopener noreferrer"&gt;Anthropic Launches Claude Security: 5 Things To Know - crn.com&lt;/a&gt;。這是合理的切入點：安全團隊本來就有大量 triage、掃描、審查與修補流程，agent 若能接在既有 repository、ticket 與 CI/CD 上，落地價值比一般聊天更容易被量化。&lt;/p&gt;

&lt;p&gt;金融與專業服務是第二條線。Anthropic 發布 Agents for financial services &lt;a href="https://www.anthropic.com/news/finance-agents" rel="noopener noreferrer"&gt;Agents for financial services - Anthropic&lt;/a&gt;，同週又宣布與 Blackstone、Hellman &amp;amp; Friedman、Goldman Sachs 建立新的 enterprise AI services company &lt;a href="https://www.anthropic.com/news/enterprise-ai-services-company" rel="noopener noreferrer"&gt;Building a new enterprise AI services company with Blackstone, Hellman &amp;amp; Friedman, and Goldman Sachs - Anthropic&lt;/a&gt;。如果把這兩件事連起來看，Anthropic 不是只想賣模型給金融業，而是想把模型包進顧問、合規、資料治理與專業服務渠道。這會比較慢，但採購阻力也比較低。&lt;/p&gt;

&lt;p&gt;創作與開發者工作流是第三條線。Claude for Creative Work &lt;a href="https://www.anthropic.com/news/claude-for-creative-work" rel="noopener noreferrer"&gt;Claude for Creative Work - Anthropic&lt;/a&gt; 與 Claude Code Auto Mode 的 human approval gates &lt;a href="https://www.infoq.com/news/2026/05/anthropic-claude-code-auto-mode/" rel="noopener noreferrer"&gt;Inside Claude Code Auto Mode: Anthropic’s Autonomous Coding System with Human Approval Gates - infoq.com&lt;/a&gt; 指向同一個產品哲學：讓 agent 做更多，但保留明確的人類批准點。這比「完全自動」更像企業會採購的形態。能自動很吸引人，但能被審計、能被中止、能留下決策痕跡，才是進 production 的必要條件。&lt;/p&gt;

&lt;p&gt;但 Anthropic 這週最值得寫的不是漂亮發布，而是兩個負面訊號。Business Insider 報導 Anthropic 悄悄把工程師使用 Claude Code token 成本預估調高到 2 倍 &lt;a href="https://www.businessinsider.com/anthropic-claude-code-token-estimates-2026-4" rel="noopener noreferrer"&gt;Anthropic quietly doubles its estimate for how much engineers can expect to spend on Claude Code tokens - Business Insider&lt;/a&gt;；Fortune 報導 Anthropic 承認工程失誤造成 Claude Code 長達一個月的下降，之前已累積多週使用者反彈 &lt;a href="https://fortune.com/2026/04/24/anthropic-engineering-missteps-claude-code-performance-decline-user-backlash/" rel="noopener noreferrer"&gt;Anthropic says engineering missteps were behind Claude Code’s monthlong decline after weeks of user backlash - Fortune&lt;/a&gt;。這兩件事應該被放在發布旁邊看，而不是埋在角落。&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Anthropic 訊號&lt;/th&gt;
&lt;th&gt;正面解讀&lt;/th&gt;
&lt;th&gt;必須面對的成本&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Claude Security&lt;/td&gt;
&lt;td&gt;安全 triage 可進 workflow&lt;/td&gt;
&lt;td&gt;false positive、修補責任、CI 整合成本&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Financial services agents&lt;/td&gt;
&lt;td&gt;金融業有高價值流程&lt;/td&gt;
&lt;td&gt;合規、資料隔離、審計與人工覆核&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Claude Code Auto Mode&lt;/td&gt;
&lt;td&gt;自動化更強且保留 approval gates&lt;/td&gt;
&lt;td&gt;token 成本、可靠性、rollback 與責任歸屬&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Claude Code 成本/品質負面訊號&lt;/td&gt;
&lt;td&gt;公司願意承認現實問題&lt;/td&gt;
&lt;td&gt;agent 仍會被 latency、成本與穩定性卡住&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;這裡的判斷很直接：Anthropic 的企業策略是對的，但 Claude Code 的成本與品質波動提醒我們，agent 還不是「開了就省人力」的工具。它更像是一個需要 SRE 心態管理的新工作流元件：要觀測、要限額、要 approval gates、要 fallback。&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Google 的壓力測試：Gemini 要證明自己不是只會被塞進每個入口
&lt;/h2&gt;

&lt;p&gt;Google 這兩週的故事，是把 Gemini 往各種場景放，但市場會追問：哪些是真的 workflow，哪些只是入口展示？&lt;/p&gt;

&lt;p&gt;最有技術含量的是 Google DeepMind 的 AlphaEvolve，標題直接說是 Gemini-powered coding agent，並強調 across fields 的 scaling impact &lt;a href="https://deepmind.google/blog/alphaevolve-impact/" rel="noopener noreferrer"&gt;AlphaEvolve: Gemini-powered coding agent scaling impact across fields - Google DeepMind&lt;/a&gt;。這類發布需要小心讀：如果只是研究展示，它代表技術方向；如果能進內部或外部工程流程，才代表產品化。對讀者最該問的不是 benchmark，而是它接不接 issue tracker、repo、CI、review policy，以及錯誤時誰負責。&lt;/p&gt;

&lt;p&gt;車載是另一個高價值場景。GM 宣布把 Google Gemini 帶到路上數百萬台車 &lt;a href="https://news.gm.com/home.detail.html/Pages/news/us/en/2026/apr/0428-Google-Gemini.html" rel="noopener noreferrer"&gt;GM brings Google Gemini to millions of vehicles on the road - General Motors&lt;/a&gt;，Google blog 也說 built-in Google 車輛會因 Gemini 變聰明 &lt;a href="https://blog.google/products-and-platforms/platforms/android/cars-with-google-built-in-gemini-tips-2026/" rel="noopener noreferrer"&gt;Your car with Google built-in is about to get smarter, thanks to Gemini - blog.google&lt;/a&gt;。車載 AI 的價值不在閒聊，而在導航、車況、語音控制與服務整合；限制也很硬：latency、離線能力、隱私、駕駛分心與責任歸屬。這是 Gemini 能否離開手機 UI、進入實體產品的一次測試。&lt;/p&gt;

&lt;p&gt;醫療則更敏感。Google DeepMind 發布 AI co-clinician 研究 &lt;a href="https://deepmind.google/blog/ai-co-clinician/" rel="noopener noreferrer"&gt;AI co-clinician: researching the path toward AI-augmented care - Google DeepMind&lt;/a&gt;。這類題目必須明確標成研究，而不是產品。臨床場景的門檻是驗證、責任、資料治理與醫師 workflow，不是 demo 看起來像醫生。&lt;/p&gt;

&lt;p&gt;消費端則是 Gemini app 的功能堆疊：April Gemini Drop &lt;a href="https://blog.google/innovation-and-ai/products/gemini-app/gemini-drop-april-2026/" rel="noopener noreferrer"&gt;Find out what’s new in the Gemini app in April's Gemini Drop. - blog.google&lt;/a&gt;、生成 Google Docs/PDF/Word 等檔案 &lt;a href="https://9to5google.com/2026/04/29/gemini-app-generate-files/" rel="noopener noreferrer"&gt;Gemini app can now generate Google Docs, PDF, Word, and other files - 9to5Google&lt;/a&gt;&lt;a href="https://blog.google/innovation-and-ai/products/gemini-app/generate-files-in-gemini/" rel="noopener noreferrer"&gt;You can now easily generate files in Gemini. - blog.google&lt;/a&gt;、personalisation features &lt;a href="https://blog.google/company-news/inside-google/around-the-globe/google-europe/united-kingdom/gemini-launches-new-personalisation-features-in-the-uk/" rel="noopener noreferrer"&gt;Gemini launches new personalisation features in the UK - blog.google&lt;/a&gt;、Proactive Assistance 與新語音準備中 &lt;a href="https://9to5google.com/2026/04/27/gemini-proactive-assistance/" rel="noopener noreferrer"&gt;Gemini app preps ‘Proactive Assistance’ and new Gemini voices - 9to5Google&lt;/a&gt;、使用限制與 AI Ultra Lite plan &lt;a href="https://9to5google.com/2026/05/05/google-ai-ultra-lite-gemini-usage-limits/" rel="noopener noreferrer"&gt;Google readies ‘AI Ultra Lite’ plan and explicit ‘usage limits’ for Gemini - 9to5Google&lt;/a&gt;。這些都指向同一件事：Google 正在把 Gemini 做成日常入口，但入口多不等於落地深。真正的考驗是使用者會不會把它放進重複工作，而不是偶爾試一次。&lt;/p&gt;

&lt;p&gt;最後，Business Insider 報導 Google 正在打造可能回答 OpenClaw 的 AI agent &lt;a href="https://www.businessinsider.com/google-ai-agent-openclaw-remy-gemini-assistant-2026-5" rel="noopener noreferrer"&gt;Google Is Building an AI Agent That Could Be Its Answer to OpenClaw - Business Insider&lt;/a&gt;，9to5Google 也提到 Gemini Agent 作為「24/7 digital partner」的跡象 &lt;a href="https://9to5google.com/2026/05/06/gemini-agent-planner-upgrade/" rel="noopener noreferrer"&gt;Google preps ‘Gemini Agent’ as your ’24/7 digital partner’ - 9to5Google&lt;/a&gt;。這一組消息如果成真，Google 會正面進入 agent OS 競爭。但在沒有正式產品前，只能視為方向訊號。&lt;/p&gt;

&lt;h2&gt;
  
  
  5. 本期結論：AI 公司正在從模型競賽，轉向控制面競賽
&lt;/h2&gt;

&lt;p&gt;把 04-25 到 05-08 的事件放在一起，主線不是「OpenAI、Anthropic、Google 誰贏」。更精準的說法是：三家公司都在把模型能力接到控制面。&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;OpenAI 的控制面是雲、政府合規、企業財務 workflow、廣告入口與代理編排。&lt;/li&gt;
&lt;li&gt;Anthropic 的控制面是安全、金融、創作與 coding agent，但它也被 token 成本與可靠性提醒。&lt;/li&gt;
&lt;li&gt;Google 的控制面是既有入口：車、Docs、Gemini app、醫療研究、coding agent 與可能的 personal agent。&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;對工程決策者，本週最實用的判斷是：&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;不要只買模型能力，要看部署權。&lt;/strong&gt; AWS、FedRAMP、企業服務合作比模型分數更接近採購現場。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;不要把 agent 當省人成本承諾。&lt;/strong&gt; Claude Code 的 2 倍 token 成本預估與一個月品質下降，是很好的反例。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;不要把入口當 workflow。&lt;/strong&gt; Google 把 Gemini 放進更多地方，但只有接上資料、權限、審計、回滾與責任鏈，才算真正落地。&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;不要低估商業入口的影響。&lt;/strong&gt; ChatGPT ads 會改變 OpenAI 的產品優先順序，也會帶來資料使用與品牌安全問題。&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;這期最值得記住的一句話：模型競賽沒有消失，但真正會改變企業採購的，是誰能控制部署、合規、成本、工作流與收入入口。&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;stance: 2026-05-08 這期的主線是 AI 公司從模型能力競賽轉向控制面競賽；MS-OpenAI 重排是核心，企業部署、垂直代理與 Gemini 場景化都是後續反應。
key_links:
  - https://openai.com/index/next-phase-of-microsoft-partnership/
  - https://openai.com/index/openai-on-aws/
  - https://www.infoq.com/news/2026/05/anthropic-claude-code-auto-mode/
  - https://deepmind.google/blog/alphaevolve-impact/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>ai</category>
      <category>machinelearning</category>
      <category>tech</category>
      <category>llm</category>
    </item>
  </channel>
</rss>
