feat: user memory

This commit is contained in:
zhaoying
2026-01-10 17:35:17 +08:00
parent 81508a25a8
commit 177d514d13
19 changed files with 615 additions and 31 deletions

View File

@@ -12,7 +12,7 @@ interface HabitsItem {
habit_description: string;
frequency_pattern: string;
time_context: string;
confidence_level: string;
confidence_level: number;
supporting_summaries: string[];
first_observed: string;
last_observed: string;
@@ -31,7 +31,6 @@ const Habits: FC = () => {
getData()
}, [id])
// 记忆洞察
const getData = () => {
if (!id) return
setLoading(true)