| 1 | import { CogneeInstance } from "../instances/types"; |
| 2 | |
| 3 | export interface SessionRow { |
| 4 | session_id: string; |
| 5 | user_id: string; |
| 6 | dataset_id: string | null; |
| 7 | status: string; |
| 8 | effective_status: string; |
| 9 | started_at: string | null; |
| 10 | last_activity_at: string | null; |
| 11 | ended_at: string | null; |
| 12 | tokens_in: number; |
| 13 | tokens_out: number; |
| 14 | cost_usd: number; |
| 15 | error_count: number; |
| 16 | last_model: string | null; |
| 17 | } |
| 18 | |
| 19 | export interface SessionsPage { |
| 20 | sessions: SessionRow[]; |
nothing calls this directly
no outgoing calls
no test coverage detected