Skip to content

Commit 6eb8ce9

Browse files
committed
fix(sequential-thinking): Fix a typo for nextThoughtNeeded
This PR fixes the `nextThoughtNeeded` parameter that was missed in #3004.
1 parent 33e029f commit 6eb8ce9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sequentialthinking/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ You should:
6969
8. Verify the hypothesis based on the Chain of Thought steps
7070
9. Repeat the process until satisfied with the solution
7171
10. Provide a single, ideally correct answer as the final output
72-
11. Only set next_thought_needed to false when truly done and a satisfactory answer is reached`,
72+
11. Only set nextThoughtNeeded to false when truly done and a satisfactory answer is reached`,
7373
inputSchema: {
7474
thought: z.string().describe("Your current thinking step"),
7575
nextThoughtNeeded: z.boolean().describe("Whether another thought step is needed"),

0 commit comments

Comments
 (0)