Skip to content

Commit 6dda92b

Browse files
authored
fix(sequential-thinking): Keep case of json params and description same
Models are confused about the case of the variables, which results into random validation errors. Keeping them the same helps to remove back and forth.
1 parent 5a86e8c commit 6dda92b

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

src/sequentialthinking/index.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ Parameters explained:
4444
* Changes in approach
4545
* Hypothesis generation
4646
* Hypothesis verification
47-
- next_thought_needed: True if you need more thinking, even if at what seemed like the end
48-
- thought_number: Current number in sequence (can go beyond initial total if needed)
49-
- total_thoughts: Current estimate of thoughts needed (can be adjusted up/down)
50-
- is_revision: A boolean indicating if this thought revises previous thinking
51-
- revises_thought: If is_revision is true, which thought number is being reconsidered
52-
- branch_from_thought: If branching, which thought number is the branching point
53-
- branch_id: Identifier for the current branch (if any)
54-
- needs_more_thoughts: If reaching end but realizing more thoughts needed
47+
- nextThoughtNeeded: True if you need more thinking, even if at what seemed like the end
48+
- thoughtNumber: Current number in sequence (can go beyond initial total if needed)
49+
- totalThoughts: Current estimate of thoughts needed (can be adjusted up/down)
50+
- isRevision: A boolean indicating if this thought revises previous thinking
51+
- revisesThought: If is_revision is true, which thought number is being reconsidered
52+
- branchFromThought: If branching, which thought number is the branching point
53+
- branchId: Identifier for the current branch (if any)
54+
- needsMoreThoughts: If reaching end but realizing more thoughts needed
5555
5656
You should:
5757
1. Start with an initial estimate of needed thoughts, but be ready to adjust

0 commit comments

Comments
 (0)