Update index.ts

This commit is contained in:
Benjamin Bartels
2025-06-23 17:36:05 +01:00
committed by GitHub
parent fce95debe7
commit 921f08287e

View File

@@ -25,7 +25,7 @@ interface ThoughtData {
class SequentialThinkingServer {
private thoughtHistory: ThoughtData[] = [];
private branches: Record<string, ThoughtData[]> = {};
private disableThoughtLogging: boolean; // <-- ADDED
private disableThoughtLogging: boolean;
constructor() {
this.disableThoughtLogging = (process.env.DISABLE_THOUGHT_LOGGING || "").toLowerCase() === "true";