Merge pull request #16 from kjannette/refinements

Refinements
This commit is contained in:
S Jannette
2026-02-24 21:04:56 -05:00
committed by GitHub
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({ const response = await client.embed({
input: texts, input: texts,
model: "voyage-3-lite", model: "voyage-3",
}); });
const embeddingMap = new Map(); const embeddingMap = new Map();

View File

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

View File

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