(db: DatabaseAdapter)
| 83 | * Convenience: read meta + overview from DB and return flat CoreSessionInfo. |
| 84 | */ |
| 85 | export function getSessionInfo(db: DatabaseAdapter): CoreSessionInfo | null { |
| 86 | const meta = getSessionMeta(db) |
| 87 | if (!meta) return null |
| 88 | const overview = getSessionOverview(db) |
| 89 | const sc = getSummaryCount(db) |
| 90 | return buildSessionInfo(meta, overview, sc) |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Count of chat sessions that have an AI-generated summary. |
no test coverage detected