feat(search): add similar sessions UI in FlowPilot sidebar

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-20 03:52:19 +00:00
parent e356103408
commit 5e009fd752
4 changed files with 118 additions and 0 deletions

View File

@@ -149,3 +149,13 @@ export interface AISessionSearchResult {
status: string
created_at: string
}
export interface SimilarSession {
id: string
problem_summary: string | null
problem_domain: string | null
status: string
resolution_summary: string | null
created_at: string | null
similarity: number
}