Skip to content

Commit 59afeaa

Browse files
authored
🐛 FIX: Default config for non-git-sync memory (#41)
1 parent cf9ff16 commit 59afeaa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/baseai/src/memory/create.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ export async function createMemory() {
6363
}
6464
);
6565

66-
let memoryFilesDir = '';
67-
let fileExtensions: string[] = [];
66+
let memoryFilesDir = '.';
67+
let fileExtensions: string[] = ['*'];
6868

6969
if (memoryInfo.useGitRepo) {
7070
// Check if the current directory is a Git repository

0 commit comments

Comments
 (0)