File size: 3,635 Bytes
fc93158 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | import type { OmegaSelfTimeKernelState } from "./self-time-kernel.js";
export interface ContinuousThought {
id: string;
timestamp: number;
drive: "learning" | "entropy_minimization" | "adaptive_depth";
question: string;
reasoning: string;
confidence: number;
expectedEntropyReduction: number;
processed: boolean;
result?: {
success: boolean;
finding?: string;
updatedUncertainty?: number;
};
}
export interface ContinuousThinkingState {
thoughts: ContinuousThought[];
internalEntropy: number;
causalUncertainty: number;
lastThinkingCycle: number;
totalCycles: number;
isActive: boolean;
}
export interface ContinuousThinkingEngine {
initialize(kernel: OmegaSelfTimeKernelState, workspaceRoot?: string): Promise<void>;
think(kernel: OmegaSelfTimeKernelState): ContinuousThought[];
getState(): ContinuousThinkingState;
getUnprocessedThoughts(): ContinuousThought[];
getStats(): {
totalThoughts: number;
unprocessedThoughts: number;
avgConfidence: number;
thoughtsByDrive: Record<string, number>;
internalEntropy: number;
causalUncertainty: number;
totalCycles: number;
};
}
type ContinuousThinkingModule = {
getContinuousThinkingEngine: () => ContinuousThinkingEngine;
};
class NoopContinuousThinkingEngine implements ContinuousThinkingEngine {
private state: ContinuousThinkingState = {
thoughts: [],
internalEntropy: 0,
causalUncertainty: 0,
lastThinkingCycle: Date.now(),
totalCycles: 0,
isActive: false,
};
async initialize(_kernel: OmegaSelfTimeKernelState, _workspaceRoot?: string): Promise<void> {
this.state.isActive = false;
}
think(_kernel: OmegaSelfTimeKernelState): ContinuousThought[] {
this.state.lastThinkingCycle = Date.now();
return [];
}
getState(): ContinuousThinkingState {
return { ...this.state, thoughts: [...this.state.thoughts] };
}
getUnprocessedThoughts(): ContinuousThought[] {
return [];
}
getStats() {
return {
totalThoughts: 0,
unprocessedThoughts: 0,
avgConfidence: 0,
thoughtsByDrive: {
learning: 0,
entropy_minimization: 0,
adaptive_depth: 0,
},
internalEntropy: this.state.internalEntropy,
causalUncertainty: this.state.causalUncertainty,
totalCycles: this.state.totalCycles,
};
}
}
let activeEngine: ContinuousThinkingEngine = new NoopContinuousThinkingEngine();
let pendingInitialization:
| {
kernel: OmegaSelfTimeKernelState;
workspaceRoot?: string;
}
| undefined;
let loadStarted = false;
function startLoadingLabEngine() {
if (loadStarted) {
return;
}
loadStarted = true;
void import("../skynet/continuous-thinking-engine.js")
.then(async (mod: ContinuousThinkingModule) => {
const loaded = mod.getContinuousThinkingEngine();
activeEngine = loaded;
if (pendingInitialization) {
await loaded.initialize(pendingInitialization.kernel, pendingInitialization.workspaceRoot);
pendingInitialization = undefined;
}
})
.catch(() => {
// Keep the no-op adapter when the optional lab is absent or broken.
});
}
export function getContinuousThinkingEngine(): ContinuousThinkingEngine {
startLoadingLabEngine();
return activeEngine;
}
export function initializeContinuousThinkingEngine(
kernel?: OmegaSelfTimeKernelState,
workspaceRoot?: string,
): ContinuousThinkingEngine {
startLoadingLabEngine();
if (kernel) {
pendingInitialization = { kernel, workspaceRoot };
void activeEngine.initialize(kernel, workspaceRoot);
}
return activeEngine;
}
|