MCPcopy Create free account
hub / github.com/Alphanimble/htmlstream / SessionSummary

Interface SessionSummary

demo/chat/session-api.ts:3–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { repairSession, type ChatSession } from "./session";
2
3export interface SessionSummary {
4 id: string;
5 createdAt: string;
6 updatedAt: string;
7 messageCount: number;
8 preview: string;
9}
10
11function normalizeSession(raw: ChatSession): ChatSession {
12 return repairSession({

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected