觉
AI觉醒星球
Awakening is here
Knowledge File / AI技能杠杆
2026-08-31 2 浏览 免费阅读

解读ChatGPT Work

OpenAI新推出的ChatGPT Work是一个强大但令人困惑的产品,本文深入解析其云端与本地两种形态,以及代码执行、浏览器自动化等核心功能,帮助你理解何时使用它。

SOURCE / AI技能杠杆 MIN / 9 ACCESS / 免费阅读 POST / 2026-08-31 07:59:47

原贴

查看原文
作者:Simon Willison 来源站点:simonwillison.net 原贴时间:

原文

OpenAI announced ChatGPT Work on July 9th, and have been furiously iterating on it ever since. It is an extraordinarily confusing and very powerful product. Here's what I've figured out about it so far. ChatGPT Work is actually two products The more interesting version of ChatGPT Work is the one that runs in the cloud. This can be accessed via chatgpt.com or through the ChatGPT mobile apps. Let's call it Work Cloud . If you install the ChatGPT desktop app - the app that used to be called Codex - you gain access to a thing called ChatGPT Work that can access files and run programs directly on your computer. Let's call that one Work Local . This one feels more like regular Codex re-skinned to be less intimidating to non-software-developers. For the rest of this article I'm going to talk exclusively about Work Cloud. Work is for paid subscribers only Right now, ChatGPT Work (in both flavors) is available only to $20/month and up subscribers. Free users and $8/month Go users do not have access. Work has features that aren't available in Chat The interface for accessing Work is a tab selector, which presents it as an alternative to Chat: The obvious question is when should I use Chat, and when should I use Work? OpenAI's official answer to that question is: Use Chat when you want an answer, explanation, brainstorm, or short draft. Use ChatGPT Work when you want ChatGPT to complete a task with a clear outcome, such as a brief, deck, analysis, recurring update, workflow, or file you can review and use. I find that almost entirely useless, because I've been using regular ChatGPT Chat for all of those task categories for years! The better question then is what features does Work have that are missing from Chat? After extensive experimentation I think I've mostly figured that out: Options to use Luna and Terra in place of Sol A code execution environment with Internet access A headless Chrome browser A persistent filesystem shared between sessions The ability to publish ChatGPT Sites The ability to run sub-agent sessions with Sol, Luna, and Terra Scheduled prompt automations (may be in ChatGPT Chat too) Model selection In Work, you get the option to pick GPT-5.6 Sol, Luna, or Terra, each with Light, Medium, High, Extra High, Max, or Ultra reasoning levels. You can also pick GPT-5.5 at Light, Medium, High, or Extra High. These look to be the same models that are available through the OpenAI API. Chat offers a different selection: 5.6 Instant, Medium, High, Extra High, and Pro. It doesn't explain if those are Luna or Terra or Sol (I'm assuming Sol?). 5.6 Pro appears to be exclusive to Chat, with no equivalent in Work. My current understanding from using Codex is that Ultra is a special mode that more eagerly delegates to sub-agents. I believe ChatGPT Work sessions are billed against your Codex allowance, while ChatGPT Chat Sessions get their own, separate allowance. This may help explain the model availability differences. Code execution with Internet access! As a long-time fan of the Code Interpreter pattern - pioneered by OpenAI in 2023 - this is by far the most exciting feature of ChatGPT Work (Cloud) for me. The code execution environment can now talk to the rest of the internet! ChatGPT Chat can't do this - if you ask it to install additional software packages or interact with websites or APIs that access will be blocked by the container proxy. (Weirdly, back in January it grew the ability to install packages , but that doesn't seem to work any more. I wish they had better changelogs!) Claude's equivalent container has allowed restricted internet access since it launched last September . Claude can install packages from PYPI and NPM and clone repositories from GitHub. But that is about it: the allowlist of domains is very short. ChatGPT Work allows a whole lot more than that. It can be configured with a specific list of allowed domains, but the default appears to be open to all. This makes Work an incredibly useful tool. You can have it clone GitHub repositories, install their dependencies, then use them to interact with the rest of the web! A full, headless Chrome browser Another killer feature of ChatGPT Work is the browser tool . ChatGPT Work can launch a full Chrome instance, load websites, fill out forms, and take screenshots. If a site requires sign in the browser can prompt you to take over and enter both passwords and 2FA codes, without round-tripping those credentials through the model itself. It can even run JavaScript against the DOM of loaded pages. I prompted: Load simonwillison.net in your browser and extract the headings using JavaScript ChatGPT Work fired up a browser instance and ran the code: await tab . playwright . evaluate ( ( ) => { return Array . from ( document . querySelectorAll ( "h1,h2,h3,h4,h5,h6" ) , heading => ( { level : heading . tagName . toLowerCase ( ) , text : heading . innerText . trim ( ) . replace ( / \s + / g , " " ) , id : heading . id || null } ) ) ; } ) ; This feels a lot like my shot-scraper javascript tool, only now I can access it on my phone! A persistent, shared filesystem ChatGPT Chat gets a fresh filesystem for each chat session. These cannot be accessed from any other session. In ChatGPT Work each session gets its own scratch folder - named something like /workspace/scratch/e00a0a017944 - but each of those are persisted across sessions, so you can access files from previous chats. I have 171 folders in /workspace/scratch right now! As far as I can tell that /workspace volume is mounted to all Work sessions that are currently running - file edits from one can be instantly seen by the others. They don't seem to share the same process space though, and localhost servers running in one can't be accessed from another. ChatGPT Sites ChatGPT Work has the ability to build and deploy entire websites, using Cloudflare Workers. These can have HTML and JavaScript and can run server-side features too, including stateful features on top of Cloudflare D1 and R2. Here's a simple site I built with this feature: london-pelicans-in-her-piety.simonw.chatgpt.site My prompt was: Figure out all of the places in London with a pelican in her piety, then turn that into a JSON file and build a ChatGPT sites site about them (A pelican in her piety is a fascinating piece of medieval Christian imagery - once you know about them you'll find them all over the place.) These sites default to being private to the user that created them, but you can make them public and (on team plans) share them with other specific individuals. Sub-agents with Sol, Luna, and Terra There's not much to say about this one. ChatGPT Chat can't run sub-agents. ChatGPT Work can. This is very much a power-user feature: if you are running a complex project that can benefit from multiple parallel agents working together, Work can do that. Scheduled prompt automations Another feature that seems to have migrated from regular ChatGPT to ChatGPT Work at some point. You can prompt ChatGPT Work like this: run a search to see if Waymo have announced a launch date for Half Moon Bay every day at 8am This will schedule a prompt to run on that frequency. These prompts can decide that nothing interesting has happened, or they can decide to notify you of some new information. Update : Actually this seems to work in ChatGPT Chat as well. It's still worth noting here though, as it can be used in conjunction with other ChatGPT Work exclusive features. You can set a scheduled task to update a ChatGPT Site on an hourly basis, for example. Is this safe? An open question for me right now is how safe all of this stuff is. My lethal trifecta model warns about the risks inherent in any agent system that combines access to private data with exposure to untrusted content and a way to communicate stolen information back to an attacker. ChatGPT Work combines all three! I'd love to hear more from OpenAI about how they protect ChatGPT Work sessions against prompt injection attacks. I expect their answer is the same auto-review mechanism as Codex. OpenAI could make this a lot less confusing Figuring this all out took way more work than it should have. I think there are two key problems here: OpenAI explain Work in terms of what it's for, not what it actually does OpenAI still insist on hiding their system prompts and tools descriptions If the ChatGPT Work documentation included the exact system prompt and tool descriptions used by the agent I wouldn't have needed to write this post. Tags: ai , openai , generative-ai , chatgpt , llms , code-interpreter , general-agents

中文翻译

OpenAI于7月9日宣布了ChatGPT Work,并自此对其进行了疯狂迭代。这是一个极其令人困惑但功能强大的产品。以下是我目前对它的理解。

ChatGPT Work实际上是两个产品。更有趣的版本是云端运行的版本。可以通过chatgpt.com或ChatGPT移动应用访问。我们称之为Work Cloud。如果你安装ChatGPT桌面应用(以前称为Codex的应用),你就可以使用一个名为ChatGPT Work的东西,它可以直接访问你计算机上的文件并运行程序。我们称之为Work Local。这个版本感觉更像是将常规Codex重新包装,以减少非软件开发人员的畏惧感。

在本文的其余部分,我将专门讨论Work Cloud。

Work仅面向付费订阅者。目前,ChatGPT Work(两种形式)仅对每月20美元及以上的订阅者开放。免费用户和每月8美元的Go用户无法使用。

Work拥有Chat中不可用的功能。访问Work的界面是一个标签选择器,它将其呈现为Chat的替代方案:显然的问题是,我何时应该使用Chat,何时应该使用Work?OpenAI对这个问题的官方回答是:当你想要一个答案、解释、头脑风暴或短草稿时,使用Chat。当你希望ChatGPT完成一个具有明确结果的任务时,使用ChatGPT Work,例如简报、演示文稿、分析、定期更新、工作流程或你可以审阅和使用的文件。我认为这几乎完全没用,因为多年来我一直使用常规的ChatGPT Chat来处理所有这些任务类别!那么更好的问题是,Work具有哪些Chat所缺少的功能?经过大量实验,我想我基本上弄清楚了:

  • 使用Luna和Terra代替Sol的选项
  • 具有互联网访问权限的代码执行环境
  • 无头Chrome浏览器
  • 会话之间共享的持久文件系统
  • 发布ChatGPT Sites的能力
  • 使用Sol、Luna和Terra运行子代理会话的能力
  • 定时提示自动化(也可能在ChatGPT Chat中)

模型选择。在Work中,你可以选择GPT-5.6 Sol、Luna或Terra,每种都有Light、Medium、High、Extra High、Max或Ultra推理级别。你还可以选择GPT-5.5的Light、Medium、High或Extra High。这些看起来与OpenAI API中可用的模型相同。Chat提供了不同的选择:5.6 Instant、Medium、High、Extra High和Pro。它没有解释这些是Luna、Terra还是Sol(我假设是Sol?)。5.6 Pro似乎是Chat独有的,在Work中没有对应。根据我使用Codex的经验,我目前的理解是Ultra是一种特殊模式,它更积极地委派给子代理。我认为ChatGPT Work会话会从你的Codex配额中计费,而ChatGPT Chat会话有自己单独的配额。这可能有助于解释模型可用性的差异。

具有互联网访问权限的代码执行!作为Code Interpreter模式的长期粉丝(该模式由OpenAI于2023年开创),这对我来说是ChatGPT Work(云端)迄今最令人兴奋的功能。代码执行环境现在可以与互联网的其余部分通信!ChatGPT Chat无法做到这一点——如果你要求它安装额外的软件包或与网站或API交互,该访问将被容器代理阻止。(奇怪的是,一月份它获得了安装包的能力,但似乎不再有效。我希望他们有更好的更新日志!)Claude的等效容器自去年9月推出以来已允许受限的互联网访问。Claude可以安装PYPI和NPM的包,并从GitHub克隆仓库。但仅此而已:域名的白名单非常短。ChatGPT Work允许的内容要多得多。它可以配置为特定的允许域名列表,但默认似乎是完全开放的。这使得Work成为一个极其有用的工具。你可以让它克隆GitHub仓库,安装它们的依赖,然后使用它们与网络上的其他内容交互!

完整、无头的Chrome浏览器。ChatGPT Work的另一个杀手级功能是浏览器工具。ChatGPT Work可以启动完整的Chrome实例,加载网站,填写表单,并截取屏幕截图。如果网站需要登录,浏览器可以提示你接管并输入密码和2FA代码,而无需将凭据往返传输给模型本身。它甚至可以对已加载页面的DOM运行JavaScript。我提示:在浏览器中加载simonwillison.net,并使用JavaScript提取标题。ChatGPT Work启动了浏览器实例并运行了代码:

await tab.playwright.evaluate(() => {
  return Array.from(document.querySelectorAll("h1,h2,h3,h4,h5,h6"), heading => ({
    level: heading.tagName.toLowerCase(),
    text: heading.innerText.trim().replace(/\s+/g, " "),
    id: heading.id || null
  }));
});

这感觉很像我的shot-scraper javascript工具,只是现在我可以在手机上访问它!

持久、共享的文件系统。ChatGPT Chat为每个聊天会话获得一个全新的文件系统。这些文件系统无法从任何其他会话访问。在ChatGPT Work中,每个会话都有自己的暂存文件夹——命名类似于/workspace/scratch/e00a0a017944——但每个文件夹都会跨会话保留,因此你可以从以前的聊天中访问文件。我现在在/workspace/scratch中有171个文件夹!据我所知,/workspace卷被挂载到所有当前正在运行的Work会话中——一个会话的编辑可以立即被其他会话看到。不过,它们似乎不共享相同的进程空间,并且在一个会话中运行的localhost服务器无法从另一个会话访问。

ChatGPT Sites。ChatGPT Work能够使用Cloudflare Workers构建和部署整个网站。这些网站可以包含HTML和JavaScript,也可以运行服务器端功能,包括在Cloudflare D之上的有状态功能...

核心信息

OpenAI新推出的ChatGPT Work是一个强大但令人困惑的产品,本文深入解析其云端与本地两种形态,以及代码执行、浏览器自动化等核心功能,帮助你理解何时使用它。

  • OpenAI新推出的ChatGPT Work是一个强大但令人困惑的产品,本文深入解析其云端与本地两种形态,以及代码执行、浏览器自动化等核心功能,帮助你理解何时使用它。
  • 原贴提到:OpenAI announced ChatGPT Work on July 9th, and have been furiously itera
  • 来源:simonwillison.net

详细解读

这是什么信号?

OpenAI推出ChatGPT Work,标志着AI助手从“聊天”向“任务执行”的关键转变。Work Cloud版本提供了代码执行、浏览器自动化、持久文件系统等能力,使得AI不再只是提供建议,而是可以直接完成复杂工作流。这预示着AI开发平台正在向“代理化”演进。

为什么重要?

对于AI行业而言,Work的代码执行+互联网访问是一个飞跃,它突破了传统ChatGPT的沙盒限制,允许模型与外部世界实时交互。这意味着AI可以自主完成数据抓取、网站部署、自动化测试等任务,大幅降低人力成本。同时,它是OpenAI在Agent赛道上的一次重要布局,直接对标Claude的类似功能,但开放程度更高。

对谁有价值?

对开发者、数据分析师、运营人员等一切需要处理重复性数字工作的人都有价值。例如,开发者可以用它来自动化代码审查、运行测试;运营可以用它定时生成报告、抓取竞品信息;产品经理可以用它快速搭建原型网站。

可以怎么行动?

作为付费用户,可以立即尝试Work Cloud的功能:在浏览器中打开chatgpt.com,切换到Work标签,尝试让AI执行一个需要联网和代码的任务,比如“抓取某网站标题并保存为CSV”。同时,可以配置定时自动化,让AI定期执行任务。对于企业,可以探索将Work集成到内部工具链中,但需注意数据安全。

风险或限制

目前Work仅对20美元/月以上用户开放,门槛较高。代码执行和浏览器功能虽然强大,但可能被滥用,例如用于爬取受限内容或发动攻击。另外,模型在复杂任务中的可靠性仍有限,需要人工监督。持久文件系统虽然方便,但也可能导致敏感数据泄露。

信息差价值

这条内容的真正价值,不只是“有人发布了一个新功能”,而是它揭示了 simonwillison.net 背后的产品方向、工作流变化或竞争信号。对 OPC 来说,这种信息可以转化成持续追踪的栏目选题。

如果把《解读ChatGPT Work》放到你的内容系统里,它最大的价值在于帮助读者更快看懂“为什么值得关注”,而不是只看到一条碎片化动态。

参考来源

AI SUMMARY

这篇文章回答了什么

解读ChatGPT Work主要讲什么?

OpenAI新推出的ChatGPT Work是一个强大但令人困惑的产品,本文深入解析其云端与本地两种形态,以及代码执行、浏览器自动化等核心功能,帮助你理解何时使用它。

这篇文章最值得关注的要点是什么?

OpenAI新推出的ChatGPT Work是一个强大但令人困惑的产品,本文深入解析其云端与本地两种形态,以及代码执行、浏览器自动化等核心功能,帮助你理解何时使用它。;原贴提到:OpenAI announced ChatGPT Work on July 9th, and have been furiously itera;来源:simonwillison.net

这篇文章和哪些AI专题相关?

它适合放在AI工具、Agent工作流、AI超级个体专题里阅读。 关联原因:这篇内容命中「AI工具、工具、自动化」等主题信号。;这篇内容命中「Agent、工作流」等主题信号。;这篇内容命中「技能」等主题信号。

阅读这篇文章建议先理解哪些关键词?

建议先理解AI工具、工具、自动化、模型、Cursor这些关键词,再结合正文判断工具、机会或风险是否值得进入自己的工作流。

上一篇 基于 MiniMax H3 Max 的 24 小时 AI 直播网站上线了 下一篇 开源机器人虽萌,购买前需三思