18 lines
499 B
TypeScript
18 lines
499 B
TypeScript
/**
|
|
* Strange Loops Simulation
|
|
*
|
|
* Tests self-referential learning patterns using strange-loops concepts
|
|
* Agents observe their own performance and adapt based on meta-cognitive feedback
|
|
*/
|
|
declare const _default: {
|
|
description: string;
|
|
run(config: any): Promise<{
|
|
loops: number;
|
|
metaLearnings: number;
|
|
selfReferences: number;
|
|
adaptations: number;
|
|
totalTime: number;
|
|
}>;
|
|
};
|
|
export default _default;
|
|
//# sourceMappingURL=strange-loops.d.ts.map
|