2026-03-04T09-17-36_auto_memory/2026-03-04-pr-review-session-start.md, memo

This commit is contained in:
Nicholai Vogel 2026-03-04 02:17:37 -07:00
parent 552714b162
commit 212bcbc3ef
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
# 2026-03-04 Session Notes
## PR Review Session Start
Nicholai requested a review of PR #111 from ddasgupta4 titled "fix(constellation): join vec_embeddings to resolve missing vector column crash". The assistant located and began gathering details on the PR.
## PR #111 Overview
The PR fixes a critical bug in the Constellation tab of the Signet dashboard. The tab was permanently stuck on "Computing layout..." and the `/api/embeddings/health` endpoint was returning 500 Internal Server Error.
Root cause: The UMAP projection query in `umap-projection.ts` was attempting to select `e.vector` from the `embeddings` table, but this column does not exist. Vector data is actually stored in the `vec_embeddings` sqlite-vec virtual table under the `embedding` column.
The fix adds an `INNER JOIN vec_embeddings v ON v.id = e.id` clause and changes the selection to `v.embedding AS vector`. Additionally, the `blobToVector` function was updated to accept both `Uint8Array` and `Buffer` types.
The PR contains 9 additions and addresses a critical path issue affecting the dashboard's main constellation visualization feature.

Binary file not shown.