Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/gpt-5/gpt-5_prompting_guide.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@
"#### Prompting for less eagerness\n",
"GPT-5 is, by default, thorough and comprehensive when trying to gather context in an agentic environment to ensure it will produce a correct answer. To reduce the scope of GPT-5’s agentic behavior—including limiting tangential tool-calling action and minimizing latency to reach a final answer—try the following: \n",
"- Switch to a lower `reasoning_effort`. This reduces exploration depth but improves efficiency and latency. Many workflows can be accomplished with consistent results at medium or even low `reasoning_effort`.\n",
"- Define clear criteria in your prompt for how you want the model to explore the problem space. This reduces the model’s need to explore and reason about too many ideas:\n",
"- Define clear criteria in your prompt for how you want the model to explore the problem space. This reduces the model’s need to explore and reason about too many ideas.\n",
"\n",
"```\n",
"<context_gathering>\n",
"Goal: Get enough context fast. Parallelize discovery and stop as soon as you can act.\n",
"\n",
"Method:\n",
"- Start broad, then fan out to focused subqueries.\n",
"- In parallel, launch varied queries; read top hits per query. Deduplicate paths and cache; don’t repeat queries.\n",
"- In parallel, launch varied queries; read top hits per query. Deduplicate paths and cache, and don’t repeat queries.\n",
"- Avoid over searching for context. If needed, run targeted searches in one parallel batch.\n",
"\n",
"Early stop criteria:\n",
Expand Down