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

Interface SessionMessage

src/server/session/store.ts:25–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23 * Session 消息
24 */
25export interface SessionMessage {
26 seq: number;
27 role: 'user' | 'assistant' | 'compressed';
28 content: string;
29 timestamp: string;
30 thinking?: string;
31 toolCalls?: ToolCall[];
32}
33
34/**
35 * 工具调用记录

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected