From 0595495a775783fb2705b95feddae7389b2b5ba6 Mon Sep 17 00:00:00 2001 From: "S;Co" Date: Thu, 11 Jun 2026 18:07:33 +0100 Subject: [PATCH] Fix typo in memory strategy comment --- packages/core/src/common/agent/interfaces/agent.interface.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/common/agent/interfaces/agent.interface.ts b/packages/core/src/common/agent/interfaces/agent.interface.ts index ed83ab10..ee29832a 100644 --- a/packages/core/src/common/agent/interfaces/agent.interface.ts +++ b/packages/core/src/common/agent/interfaces/agent.interface.ts @@ -63,7 +63,7 @@ export type GraphConfigInitialized = Modify< */ export enum MemoryStrategy { // Will be implemented later - HOLISTIC = 'holistic', // Perfect for interactive agent or autonomus agent with a short-life + HOLISTIC = 'holistic', // Perfect for interactive agent or autonomous agent with a short life CATEGORIZED = 'categorized', // Perfect for long-life autonomous agent }