Files
myWiki/concepts/outcome-first-prompting.md
2026-07-20 14:14:55 +08:00

46 lines
1.7 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "结果优先提示 (Outcome-First Prompting)"
created: 2026-07-13
updated: 2026-07-13
type: concept
tags: [prompt-engineering, agent, gpt5.6]
sources:
- https://developers.openai.com/api/docs/guides/prompt-guidance-gpt-5p6
- openai-gpt5p6-prompt-guide-2026
---
# 结果优先提示
## 定义
GPT-5.6 Prompt 指南的核心原则之一:**比起规定模型的每一步,更重要的是写清最终结果。** 从过程导向转向结果导向。
## 旧范式 vs. 新范式
| 旧范式(过程导向) | 新范式(结果导向) |
|-------------------|-------------------|
| "先搜索,再读取文件,接着调用工具 X最后按 Y 格式输出" | "目标是 Z可用的证据包括 A/B/C行动边界内于 D验收标准为 E" |
| 固定执行顺序 | 模型自主选择执行路径 |
| 对所有情况预设流程 | 提供判断标准和原则 |
## 关键要素
写清四件事:
1. **最终目标**:任务要达成什么
2. **可用证据**:什么信息算是有效的
3. **行动边界**:什么可以做、什么不能做
4. **验收标准**:怎样算任务完成
## ALWAYS/NEVER/MUST 的保留
不是说不能用——安全限制、必填字段、禁止操作仍需明确。但"是否继续搜索"、"何时调用工具"、"信息不足时是否追问"更适合提供判断标准而非固定流程。
## 与 [[stopping-conditions-prompt|停止条件]] 的关系
结果优先必然要求提前写清停止条件:证据足够时进入交付,缺少关键事实时说明缺什么并低成本补充。
## 参考
- [[openai-gpt5p6-prompt-guide-2026|GPT-5.6 Prompt 指南]]
- [[prompt-simplification|Prompt 做减法]]
- [[prompt-structure-framework|Prompt 结构框架]]