MCPcopy Create free account
hub / github.com/allocnode/oh-my-sage / ChatMessage

Interface ChatMessage

src/components/Chat.tsx:24–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22}
23
24interface ChatMessage {
25 id: string;
26 role: 'user' | 'assistant';
27 content: string;
28 seq?: number;
29 process?: {
30 toolCalls: Array<{ tool: string; args?: any; result?: any; success: boolean }>;
31 thinking: string;
32 };
33}
34
35interface SessionMessage {
36 seq: number;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected