diff --git a/examples/gpt-5/gpt-5_prompting_guide.ipynb b/examples/gpt-5/gpt-5_prompting_guide.ipynb index adafcf21ef..f7775ffcdb 100644 --- a/examples/gpt-5/gpt-5_prompting_guide.ipynb +++ b/examples/gpt-5/gpt-5_prompting_guide.ipynb @@ -27,7 +27,7 @@ "#### 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", "\n", @@ -35,7 +35,7 @@ "\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",