Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5278437
add: vectordb sdk support.
ItzNotABug Feb 11, 2026
db8916d
Merge branch 'feat-documentsdb' into feat-vectordb
premtsd-code Mar 16, 2026
f38a9bc
fix: rename vectordb to vectorsdb for naming consistency.
premtsd-code Mar 16, 2026
61c1e82
fix: vectorsdb collection pages use correct SDK endpoints
premtsd-code Mar 18, 2026
218be14
fix: guard mock suggestions for vectorsdb, optimize fold scan
premtsd-code Mar 18, 2026
5d0e4ff
vectorsdb collection page and empty state bugs
premtsd-code Mar 20, 2026
a1ec42b
merge feat-documentsdb and fix SDK type errors
premtsd-code Mar 20, 2026
1bfe064
(fix): vectorsdb review fixes — index creation, SDK embeddings, fold …
premtsd-code Mar 21, 2026
8accb15
(chore): update console SDK to 04899af with rebuilt types
premtsd-code Mar 21, 2026
6df70db
Merge remote-tracking branch 'origin/feat-documentsdb' into feat-vect…
premtsd-code Mar 21, 2026
d89fad8
Merge remote-tracking branch 'origin/feat-documentsdb' into feat-vect…
premtsd-code Mar 21, 2026
b259318
(fix): import Columns type from correct module in sheetOptions
premtsd-code Mar 21, 2026
d735f7f
(fix): remove databaseType param from suggestColumns call
premtsd-code Mar 21, 2026
51b499a
(chore): update console SDK to 2291c59 with rebuilt dist
premtsd-code Mar 21, 2026
8c29b65
Merge remote-tracking branch 'origin/feat-documentsdb' into feat-vect…
premtsd-code Mar 21, 2026
2a5aa4d
(fix): embedding fold preview with inline values, vectorsdb sample da…
premtsd-code Mar 22, 2026
3482580
add vectorsdb document-level activity logs
premtsd-code Mar 22, 2026
6eef1c0
feat: update SDK to pkg.vc preview with vectorsdb DatabaseType enum
premtsd-code Mar 23, 2026
995af51
fix: remove misleading DocumentsDBIndexType cast for vectorsdb compat…
premtsd-code Mar 23, 2026
902ea0a
merge: feat-documentsdb into feat-vectordb
premtsd-code Mar 24, 2026
fecbdaf
Merge feat-documentsdb into feat-vectordb
premtsd-code Mar 25, 2026
c85040c
address review: requestMeasure for folding, shared HintBadge, remove …
premtsd-code Mar 25, 2026
47a660c
embeddings fold: native gutter chevron, truncated value preview, resp…
premtsd-code Mar 25, 2026
462177c
fix: override picomatch to 4.0.4 for ReDoS vulnerability
premtsd-code Mar 26, 2026
5860ca1
add JSON import/export UI for documentsdb and vectorsdb collections
premtsd-code Mar 26, 2026
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
11 changes: 4 additions & 7 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"dependencies": {
"@ai-sdk/svelte": "^1.1.24",
"@appwrite.io/console": "https://pkg.vc/-/@appwrite/@appwrite.io/console@e259e61",
"@appwrite.io/console": "https://pkg.vc/-/@appwrite/@appwrite.io/console@93e968b",
"@appwrite.io/pink-icons": "0.25.0",
"@appwrite.io/pink-icons-svelte": "https://pkg.vc/-/@appwrite/@appwrite.io/pink-icons-svelte@bfe7ce3",
"@appwrite.io/pink-legacy": "^1.0.3",
Expand Down Expand Up @@ -105,6 +105,7 @@
"vite": "npm:rolldown-vite@latest",
"minimatch": "10.2.3",
"immutable": "^5.1.5",
"flatted": "^3.4.2"
"flatted": "^3.4.2",
"picomatch": "^4.0.4"
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@
title: 'DocumentsDB',
subtitle:
'Store flexible data without a fixed schema. Best for unstructured data and simple querying.'
},
{
type: 'vectorsdb',
title: 'VectorsDB',
subtitle:
'Store data as vectors to find similar results. Best for semantic search and recommendations.'
}
];

Expand Down Expand Up @@ -276,7 +282,7 @@
{/snippet}

{#snippet selectDatabaseType(disabled = false)}
<Layout.Grid columns={2} columnsS={1}>
<Layout.Grid columns={3} columnsS={1}>
{#each databaseTypes as databaseType}
<div class="card-selector">
<Card.Selector
Expand Down
Loading
Loading