feat(frontend): add 3d interaction graph

This commit is contained in:
2026-02-16 17:03:51 +00:00
parent 7c1e069152
commit 4f577abd4f
6 changed files with 385 additions and 3 deletions

View File

@@ -35,9 +35,12 @@ type User = {
vocab?: Vocab | null;
};
type InteractionGraph = Record<string, Record<string, number>>;
type UserAnalysisResponse = {
top_users: TopUser[];
users: User[];
interaction_graph: InteractionGraph;
};
// Time Analysis
@@ -89,6 +92,7 @@ export type {
TopUser,
Vocab,
User,
InteractionGraph,
UserAnalysisResponse,
FrequencyWord,
AverageEmotionByTopic,