Skip to content

Commit 39f2778

Browse files
authored
🐛 FIX: memory config (#966)
<!-- Explain the changes introduced in your PR --> ## Pull Request approval You will need to get your PR approved by at least one member of the Sourcegraph team. For reviews of docs formatting, styles, and component usage, please tag the docs team via the #docs Slack channel.
1 parent 725a5fe commit 39f2778

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

baseai/memory/docs/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
import { MemoryI } from '@baseai/core';
22

33
const memoryDocs = (): MemoryI => ({
4-
name: 'docs',
5-
description: 'Docs folder of sourcegraph docs repository as an auto-synced memory',
4+
name: 'docs',
5+
description: 'Docs folder of sourcegraph docs repository as an auto-synced memory',
66
git: {
77
enabled: true,
8-
include: ['**/*'],
8+
include: ['**/*.mdx'],
99
gitignore: true,
1010
deployedAt: '',
1111
embeddedAt: '',
1212
},
13-
documents: {
13+
documents: {
1414
meta: doc => {
1515
const url = `https://sourcegraph.com/docs/${doc.path}`;
1616
return {

0 commit comments

Comments
 (0)