Skip to content
Merged
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 content/cookbook/00-guides/23-gpt-5.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Here are the key strategies for effective prompting:

**1. Agentic Workflow Control**

- Adjust the `reasoning_effort` parameter to calibrate model autonomy
- Adjust the `reasoningEffort` parameter to calibrate model autonomy
- Set clear stop conditions and define explicit tool call budgets
- Provide guidance on exploration depth and persistence

Expand All @@ -39,7 +39,7 @@ const result = await generateText({
prompt: 'Analyze this complex dataset and provide insights.',
providerOptions: {
openai: {
reasoning_effort: 'high', // Increases autonomous exploration
reasoningEffort: 'high', // Increases autonomous exploration
},
},
});
Expand Down
Loading