3 Commits

Author SHA1 Message Date
KS Jannette
21453aab7d UI development 2026-02-24 21:02:43 -05:00
KS Jannette
691186e02c upgraded scoring algorithm model 2026-02-24 20:55:19 -05:00
S Jannette
fd48aaab4d Merge pull request #15 from kjannette/test-data-xfer
further DB infra buildout
2026-02-24 19:41:31 -05:00
3 changed files with 12 additions and 1 deletions

View File

@@ -13,7 +13,7 @@ export const embedNotes = async (notes) => {
const response = await client.embed({
input: texts,
model: "voyage-3-lite",
model: "voyage-3",
});
const embeddingMap = new Map();

View File

@@ -109,6 +109,9 @@ const Stickies = () => {
<span className="cluster-rank" aria-label={`Priority ${group.rank}`}>
{group.rank}
</span>
{group.rank === 1 && (
<span className="cluster-reorder-hint">Drag and drop to reorganize cluster priority</span>
)}
<h3 className="cluster-label">{group.label}</h3>
<span className="cluster-drag-handle" aria-hidden="true"></span>
</div>

View File

@@ -60,6 +60,14 @@
flex-shrink: 0;
}
.cluster-reorder-hint {
font-size: 0.8em;
color: #9ca3af;
font-style: italic;
white-space: nowrap;
flex-shrink: 0;
}
.cluster-label {
margin: 0;
font-size: 1.2em;