From c31fc34f082786a7a430e364e5dd5c039fd3f055 Mon Sep 17 00:00:00 2001 From: "S;Co" Date: Sun, 7 Jun 2026 18:06:21 +0100 Subject: [PATCH] docs: fix autonomous agent typo --- 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..b2e19c9e 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 }