MCPcopy
hub / github.com/Narcooo/inkos / ChatMessage

Interface ChatMessage

packages/studio/src/components/chat-utils.ts:3–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1// Pure helper functions extracted from ChatBar for reuse in ChatPage and tests.
2
3interface ChatMessage {
4 readonly role: "user" | "assistant";
5 readonly content: string;
6 readonly timestamp: number;
7}
8
9interface SharedSessionMeta {
10 readonly activeBookId?: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected