Skip to content

Commit 1db7851

Browse files
committed
enabling agentic memory feature by default as we are going GA
Signed-off-by: Dhrubo Saha <[email protected]>
1 parent 080f974 commit 1db7851

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/java/org/opensearch/ml/common/settings/MLCommonsSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ private MLCommonsSettings() {}
470470

471471
// Feature flag for Agentic memory APIs
472472
public static final Setting<Boolean> ML_COMMONS_AGENTIC_MEMORY_ENABLED = Setting
473-
.boolSetting(ML_PLUGIN_SETTING_PREFIX + "agentic_memory_enabled", false, Setting.Property.NodeScope, Setting.Property.Dynamic);
473+
.boolSetting(ML_PLUGIN_SETTING_PREFIX + "agentic_memory_enabled", true, Setting.Property.NodeScope, Setting.Property.Dynamic);
474474
public static final String ML_COMMONS_AGENTIC_MEMORY_DISABLED_MESSAGE =
475475
"The Agentic Memory APIs are not enabled. To enable, please update the setting " + ML_COMMONS_AGENTIC_MEMORY_ENABLED.getKey();
476476

0 commit comments

Comments
 (0)