Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
d628bed
Add chatbot
MaedahBatool Feb 11, 2025
09be316
Merge branch 'main' into docs-chatbot
MaedahBatool Feb 13, 2025
fa24592
Merge branch 'main' into docs-chatbot
MaedahBatool Feb 13, 2025
a7dace0
Merge branch 'main' into docs-chatbot
MaedahBatool Feb 26, 2025
ded9c95
Add starter questions
MaedahBatool Feb 26, 2025
095f57f
Merge branch 'main' into docs-chatbot
MaedahBatool Feb 27, 2025
bd9e6e1
Add experimental badge
MaedahBatool Feb 27, 2025
17a7c24
update component to latest
MaedahBatool Feb 27, 2025
1009ced
Merge branch 'main' into docs-chatbot
MaedahBatool Feb 28, 2025
805f7a0
Merge branch 'main' into docs-chatbot
MaedahBatool Mar 6, 2025
43718ad
Merge branch 'main' into docs-chatbot
MaedahBatool Mar 6, 2025
b7045a0
Merge branch 'main' into docs-chatbot
MaedahBatool Mar 7, 2025
ddc937f
Merge branch 'main' into docs-chatbot
MaedahBatool Mar 10, 2025
98781a5
📦 NEW: memory refresh
MaedahBatool Mar 19, 2025
b63cc8b
🐛 FIX: memory name
MaedahBatool Mar 19, 2025
991adac
🐛 FIX: memory name dir
MaedahBatool Mar 19, 2025
f58b748
Update memory
MaedahBatool Mar 19, 2025
95f91cd
🐛 FIX: no need to rewriter
MaedahBatool Mar 19, 2025
47153aa
🐛 FIX: memory scratch
MaedahBatool Mar 19, 2025
9386e7a
sync latest memory
MaedahBatool Mar 19, 2025
894e04c
Merge branch 'main' into docs-chatbot
MaedahBatool Mar 19, 2025
6dd7948
Mem sync
MaedahBatool Mar 19, 2025
82b01e9
Add more questions
MaedahBatool Mar 20, 2025
ab6065e
Merge branch 'main' into docs-chatbot
MaedahBatool Mar 20, 2025
1a04669
Mem sync
MaedahBatool Mar 20, 2025
d25876b
Merge branch 'main' into docs-chatbot
MaedahBatool Mar 20, 2025
92c63ec
Fix merge conflicts
MaedahBatool Apr 7, 2025
016b554
Merge branch 'main' into docs-chatbot
MaedahBatool Apr 7, 2025
6fc5afe
Merge branch 'main' into docs-chatbot
MaedahBatool Apr 7, 2025
03615b8
Merge branch 'main' into docs-chatbot
MaedahBatool Apr 9, 2025
428f8d3
Merge branch 'main' into docs-chatbot
MaedahBatool Apr 10, 2025
215dc01
fix path
MaedahBatool Apr 10, 2025
f8b14df
Merge branch 'main' into docs-chatbot
MaedahBatool Apr 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { MemoryI } from '@baseai/core';

const memoryDocs = (): MemoryI => ({
name: 'docs',
description: 'Docs folder of sourcegraph docs repository as an auto-synced memory',
name: 'memory-sg-docs-live',
description: 'An AI memory storing all Sourcegraph docs.',
git: {
enabled: true,
include: ['**/*.mdx'],
gitignore: true,
deployedAt: '5f3fec8530280d01a783aadcdeb0ccc3f9cd8b70',
embeddedAt: ''
embeddedAt: '',
deployedAt: 'ab6065ecc6c667a5b8c0ded35498a17659d34333'
},
documents: {
meta: doc => {
Expand All @@ -22,3 +22,6 @@ const memoryDocs = (): MemoryI => ({
});

export default memoryDocs;

// Old
// deployedAt: '5f3fec8530280d01a783aadcdeb0ccc3f9cd8b70',
153 changes: 77 additions & 76 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,78 +1,79 @@
{
"name": "sourcegraph-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"baseai": "baseai",
"sync": "npx baseai@latest deploy -m docs",
"llmstxt": "node scripts/llms-txt-generator.js"
},
"browserslist": "defaults, not ie <= 11",
"dependencies": {
"@algolia/autocomplete-core": "^1.9.2",
"@algolia/client-search": "^4.22.1",
"@baseai/core": "^0.9.40",
"@docsearch/react": "3",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.18",
"@langbase/components": "^0.1.5",
"@mdx-js/mdx": "^3.0.1",
"@next/third-parties": "^14.1.4",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@tailwindcss/typography": "^0.5.7",
"@types/node": "20.4.9",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@types/react-highlight-words": "^0.16.4",
"algoliasearch": "^4.22.1",
"autoprefixer": "^10.4.12",
"class-variance-authority": "^0.7.0",
"clsx": "^1.2.1",
"contentlayer": "^0.3.4",
"date-fns": "^2.30.0",
"fast-glob": "^3.2.12",
"feed": "^4.2.2",
"flexsearch": "^0.7.31",
"github-slugger": "^2.0.0",
"js-yaml": "^4.1.0",
"kbar": "^0.1.0-beta.44",
"langbase": "^1.1.26",
"lucide-react": "^0.372.0",
"mdx": "^0.3.1",
"next": "^14.2.3",
"next-contentlayer": "^0.3.4",
"next-themes": "^0.2.1",
"prism-react-renderer": "^2.0.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-highlight-words": "^0.20.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.10.2",
"rehype-slug": "^6.0.0",
"rehype-toc": "^3.0.2",
"remark-gfm": "3.0.1",
"shiki": "^0.14.5",
"simple-functional-loader": "^1.2.1",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.1.6",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"baseai": "^0.9.40",
"eslint": "8.45.0",
"eslint-config-next": "13.4.16",
"glob": "^11.0.1",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.5.2",
"sharp": "^0.32.0"
}
"name": "sourcegraph-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"baseai": "baseai",
"sync": "npx baseai@latest deploy -m memory-sg-docs-live",
"llmstxt": "node scripts/llms-txt-generator.js"
},
"browserslist": "defaults, not ie <= 11",
"dependencies": {
"@algolia/autocomplete-core": "^1.9.2",
"@algolia/client-search": "^4.22.1",
"@baseai/core": "^0.9.40",
"@docsearch/react": "3",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.18",
"@langbase/components": "^0.1.6",
"@mdx-js/mdx": "^3.0.1",
"@next/third-parties": "^14.1.4",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@tailwindcss/typography": "^0.5.7",
"@types/node": "20.4.9",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@types/react-highlight-words": "^0.16.4",
"algoliasearch": "^4.22.1",
"autoprefixer": "^10.4.12",
"class-variance-authority": "^0.7.0",
"clsx": "^1.2.1",
"contentlayer": "^0.3.4",
"date-fns": "^2.30.0",
"fast-glob": "^3.2.12",
"feed": "^4.2.2",
"flexsearch": "^0.7.31",
"github-slugger": "^2.0.0",
"js-yaml": "^4.1.0",
"kbar": "^0.1.0-beta.44",
"langbase": "^1.1.46",
"lucide-react": "^0.372.0",
"mdx": "^0.3.1",
"next": "^14.2.3",
"next-contentlayer": "^0.3.4",
"next-themes": "^0.2.1",
"prism-react-renderer": "^2.0.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-highlight-words": "^0.20.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.10.2",
"rehype-slug": "^6.0.0",
"rehype-toc": "^3.0.2",
"remark-gfm": "3.0.1",
"shiki": "^0.14.5",
"simple-functional-loader": "^1.2.1",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.1.6",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"baseai": "^0.9.40",
"dotenv": "^16.4.7",
"eslint": "8.45.0",
"eslint-config-next": "13.4.16",
"glob": "^11.0.1",
"prettier": "^3.0.1",
"prettier-plugin-tailwindcss": "^0.5.2",
"sharp": "^0.32.0"
}
}
Loading