MCPcopy
hub / github.com/topoteretes/cognee / SessionRow

Interface SessionRow

cognee-frontend/src/modules/sessions/getSessions.ts:3–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { CogneeInstance } from "../instances/types";
2
3export 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
19export interface SessionsPage {
20 sessions: SessionRow[];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected