Compare commits
3 Commits
test-data-
...
refinement
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
21453aab7d | ||
|
|
691186e02c | ||
|
|
fd48aaab4d |
@@ -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();
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user