GPT-5.5 提示词指南GPT-5.5 prompting guide
OpenAI 发布了针对 GPT-5.5 模型的官方提示工程指南,旨在帮助开发者更有效地使用该模型。文章重点介绍了如何通过结构化提示提升输出质量,并推荐了一种适用于需要长时间思考后再返回用户响应的应用场景的技巧:在提示中明确加入 'Before any' 前缀以引导模型进行深度推理。此外,该指南还强调了使用工具调用、系统消息和参数调优等高级技巧的重要性。作者指出,合理使用这些方法可以显著提升 GPT-5.5 在复杂任务中的表现。
Simon Willison
25th April 2026 - Link Blog
GPT-5.5 prompting guide. Now that GPT-5.5 is available in the API, OpenAI have released a wealth of useful tips on how best to prompt the new model.
Here's a neat trick they recommend for applications that might spend considerable time thinking before returning a user-visible response:
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.I've already noticed their Codex app doing this, and it does make longer running tasks feel less like the model has crashed.
OpenAI suggest running the following in Codex to upgrade your existing code using advice embedded in their openai-docs skill:
$openai-docs migrate this project to gpt-5.5The upgrade guide the coding agent will follow is this one, which even includes light instructions on how to rewrite prompts to better fit the model.
Also relevant is the Using GPT-5.5 guide, which opens with this warning:
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.
Interesting to see OpenAI recommend starting from scratch rather than trusting that existing prompts optimized for previous models will continue to work effectively with GPT-5.5.
需要完整排版与评论请前往来源站点阅读。