| 1 | import chalk from 'chalk'; |
| 2 | |
| 3 | export interface ThoughtData { |
| 4 | thought: string; |
| 5 | thoughtNumber: number; |
| 6 | totalThoughts: number; |
| 7 | isRevision?: boolean; |
| 8 | revisesThought?: number; |
| 9 | branchFromThought?: number; |
| 10 | branchId?: string; |
| 11 | needsMoreThoughts?: boolean; |
| 12 | nextThoughtNeeded: boolean; |
| 13 | } |
| 14 | |
| 15 | export class SequentialThinkingServer { |
| 16 | private thoughtHistory: ThoughtData[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected