-
-
+
+
+ Общая оценка
+
+
+
+
+ Анализ категорий
+
+
+
+
+ Ключевые инсайты
+
+
+
+
+ Рекомендации
+
+
@@ -289,6 +307,10 @@ const userName = computed(() => {
background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
}
+b {
+ font-weight: bold !important;
+}
+
.expand-button:active {
transform: translateY(0);
}
diff --git a/src/models/dashboard.ts b/src/models/dashboard.ts
index 28ad5b7..49e1439 100644
--- a/src/models/dashboard.ts
+++ b/src/models/dashboard.ts
@@ -9,7 +9,14 @@ export interface DashboardData {
upcomingTransactions: Transaction[],
recentTransactions: Transaction[],
weeks: DashboardWeek[],
- analyzedText: string,
+ analyzedText: AISummary,
+}
+
+export interface AISummary {
+ common: string,
+ categoryAnalysis: string,
+ keyInsights: string,
+ recommendations: string
}
export interface DashboardWeek {