Add UI/logical temporal ordering feature

This commit is contained in:
KS Jannette
2026-02-24 13:32:06 -05:00
parent 0c7baeb9d8
commit 9ba13206c5
5 changed files with 193 additions and 25 deletions

View File

@@ -16,3 +16,7 @@ export type ClusterResponse = {
clusters: Cluster[];
score: number;
};
export type RankedCluster = Cluster & {
rank: number;
};