fix(sequential-thinking): Fix a typo for nextThoughtNeeded (#3010)

This PR fixes the `nextThoughtNeeded` parameter that was missed in #3004.
This commit is contained in:
Koichi ITO
2025-11-26 06:04:30 +09:00
committed by GitHub
parent 3ed4445b42
commit 902eed6fbf

View File

@@ -69,7 +69,7 @@ You should:
8. Verify the hypothesis based on the Chain of Thought steps
9. Repeat the process until satisfied with the solution
10. Provide a single, ideally correct answer as the final output
11. Only set next_thought_needed to false when truly done and a satisfactory answer is reached`,
11. Only set nextThoughtNeeded to false when truly done and a satisfactory answer is reached`,
inputSchema: {
thought: z.string().describe("Your current thinking step"),
nextThoughtNeeded: z.boolean().describe("Whether another thought step is needed"),