Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
47a5ba5
Feat: Implement api for vector db
4adex Jul 11, 2025
071712d
Fix errors
4adex Aug 1, 2025
519470e
Add comments for atomicity
4adex Aug 22, 2025
04f4650
Merge pull request #31 from sdslabs/implement_api
h4shk4t Aug 24, 2025
38a4ff7
fix(rocks_db_test): use temp directory #40
Shashank-k15 Sep 25, 2025
3dfc947
feat: switch cosine to 1-cos distance (#42)
Arshdeep54 Oct 5, 2025
a6d3313
Merge remote-tracking branch 'origin/refactor' into tui-update
Entity069 Oct 7, 2025
76a1b22
fix: add checks for database name before creating
Entity069 Oct 7, 2025
46d2b31
chore: add get,insert,delete vectors functionality in TUI
Entity069 Oct 7, 2025
84b2426
chore: add listing vector in storage
Entity069 Oct 8, 2025
f422ed3
chore: add listing vector in TUI
Entity069 Oct 9, 2025
159b271
chore: add searching similar vectors in TUI
Entity069 Oct 9, 2025
0a58b72
Rename core crate to defs (#44)
TanmayArya-1p Oct 9, 2025
050f0bf
feat: generate embeddings in TUI
Entity069 Oct 10, 2025
d0ae0b1
fix: add dotenv
Entity069 Oct 10, 2025
4ed25fb
Implement heap select to select k closest vectors in FlatIndex query …
TanmayArya-1p Oct 14, 2025
c9dc624
fix: close current storage engine before attempting to open another
Entity069 Oct 17, 2025
96bca3e
fix: change id from u64 to uuidv4;complete Payload struct
Entity069 Oct 25, 2025
3a8478b
fix: update test for updated id and payload
Entity069 Oct 27, 2025
3536083
feat: add listing vectors in api
Entity069 Oct 28, 2025
c207c02
fix: update tui with updated id and payload
Entity069 Oct 30, 2025
dc4f1fb
fix[api]: populate index after initiating db instance in init_api() f…
Entity069 Oct 30, 2025
7ee3a8b
refactor[tui]: update TUI to use api
Entity069 Oct 30, 2025
ed4592f
chore[api]: add test for listing vectors and building index
Entity069 Oct 30, 2025
e359536
refactor: add prompt text for db creation
Entity069 Oct 30, 2025
0951311
chore: add uuid crate
Entity069 Nov 7, 2025
40c71d9
chore: resolve conflicts
Entity069 Nov 8, 2025
36f7dca
chore: remove sentence embeddings and use text only
Entity069 Nov 8, 2025
c1853ff
chore: rename core to defs
Entity069 Nov 8, 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
3 changes: 3 additions & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ DATABASE_PATH2=Enter-path-2-here
DATABASE_NAME2=Enter-name-2-here
DATABASE_PATH3=Enter-path-3-here
DATABASE_NAME3=Enter-name-3-here

TEXT_EMBEDDING_URL=http://localhost:8080/vectors
IMAGE_EMBEDDING_URL=http://localhost:8080/vectors_img
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
/db
.DS_Store
/.idea
/testdb
/testdb
.TODO
/databases
Loading