Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
747e288
add dashboard to tui
blackpanther26 Aug 9, 2025
c0bb2c9
add basic page layouts
blackpanther26 Aug 24, 2025
827b3d4
fix page navigation
blackpanther26 Aug 24, 2025
9b0c19b
add selection
blackpanther26 Aug 24, 2025
94e9f43
refactor
blackpanther26 Aug 24, 2025
bc31974
feat: implement modular database management
blackpanther26 Sep 23, 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
050f0bf
feat: generate embeddings in TUI
Entity069 Oct 10, 2025
d0ae0b1
fix: add dotenv
Entity069 Oct 10, 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