OpenAI发布GPT-5.5提示指南供开发者使用
Simon Willison··作者 Simon Willison
关键信息
指南建议在多步骤任务调用工具前发送一句进度更新,并提供了一个具体命令($openai-docs migrate this project to gpt-5.5)用于利用嵌入式文档技能升级项目。
资讯摘要
OpenAI发布了针对GPT-5.5的详细提示指南,强调应将其视为一个全新的模型家族,而不是gpt-5.2或gpt-5.4的直接替代品。指南提供了可操作的建议,比如在长时间运行的操作之前向用户显示简短的确认消息,以减少感知延迟。它还通过openai-docs技能引入了一个内置迁移工具,允许开发者自动升级现有代码库。
示例命令展示了如何触发此过程。指南强调应从最小提示开始,并基于代表性样例进行调整,而不是沿用旧指令。
资讯正文
GPT-5.5 提示指南
现在 GPT-5.5 已在 API 中上线,OpenAI 发布了一系列实用建议,教你如何更好地向这个新模型发出指令。
他们推荐了一个巧妙技巧,适用于那些可能需要较长时间思考才能返回用户可见响应的应用程序:
Before any tool calls for a multi-step task, send a short user-visible update that acknowledges the request and states the first step. Keep it to one or two sentences.
我已经注意到他们的 Codex 应用已经这样做了,这让长时间运行的任务感觉不像模型崩溃了。
OpenAI 建议你在 Codex 中运行以下命令,利用嵌入在 openai-docs 技能中的建议来升级现有代码:
$openai-docs migrate this project to gpt-5.5
该编码代理将遵循的升级指南是这个链接,其中甚至包含轻量级提示改写说明,帮助你优化提示以更适配模型。
另外相关的还有使用 GPT-5.5 的指南,它开篇就给出了警告:
To get the most out of GPT-5.5, treat it as a new model family to tune for, not a drop-in replacement for gpt-5.2 or gpt-5.4. Begin migration with a fresh baseline instead of carrying over every instruction from an older prompt stack. Start with the smallest prompt that preserves the product contract, then tune reasoning effort, verbosity, tool descriptions, and output format against representative examples.
有趣的是,OpenAI 建议从零开始迁移,而不是相信为旧模型优化过的提示语在 GPT-5.5 上依然有效。
来源与参考
收录于 2026-04-26