From 1ab863fb9e62a919134a0cae1272322241c115ec Mon Sep 17 00:00:00 2001 From: Maedah Batool Date: Fri, 22 Nov 2024 12:14:05 -0800 Subject: [PATCH] Improve LB docs memory --- baseai/memory/docs/index.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/baseai/memory/docs/index.ts b/baseai/memory/docs/index.ts index a73490fde..83daa1550 100644 --- a/baseai/memory/docs/index.ts +++ b/baseai/memory/docs/index.ts @@ -5,10 +5,9 @@ const memoryDocs = (): MemoryI => ({ name: 'docs', description: 'Docs folder of sourcegraph docs repository as an auto-synced memory', config: { - deployedCommitHash: '7a147cfb18f19d5584ffb3805b678db47191960a', - useGitRepo: true, - dirToTrack: path.posix.join('.', 'docs'), - extToTrack: [".md",".mdx"] + useGitRepo: true, + dirToTrack: path.posix.join('.', 'docs'), + extToTrack: [".md", ".mdx"] } });