Skip to content

Commit c9ea588

Browse files
memory always on (#302)
1 parent f5bcefe commit c9ea588

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

core/config/default.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export const defaultConfig: SerializedContinueConfig = {
114114
{
115115
name: "mem0",
116116
description: "PearAI Personalized Chat powered by Mem0",
117-
enabled: false,
117+
enabled: true,
118118
}
119119
],
120120
};

gui/src/integrations/mem0/Mem0SidebarGUI.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ export default function Mem0SidebarGUI() {
4141
const memories = useSelector(
4242
(store: RootState) => store.state.memories,
4343
);
44-
const isEnabled = (useSelector((state: RootState) => state.state.config.integrations || [])).find(i => i.name === 'mem0')?.enabled;
44+
// const isEnabled = (useSelector((state: RootState) => state.state.config.integrations || [])).find(i => i.name === 'mem0')?.enabled;
45+
const isEnabled = true;
4546

4647
const searchRef = useRef<HTMLDivElement>(null)
4748
const editCardRef = useRef<HTMLDivElement>(null);

0 commit comments

Comments
 (0)