MCPcopy
hub / github.com/ValueCell-ai/ClawX / fetchSessionLabelSummaries

Function fetchSessionLabelSummaries

src/stores/chat.ts:176–180  ·  view source on GitHub ↗
(sessionKeys: string[])

Source from the content-addressed store, hash-verified

174}
175
176async function fetchSessionLabelSummaries(sessionKeys: string[]): Promise<SessionLabelSummary[]> {
177 if (sessionKeys.length === 0) return [];
178 const response = await hostApi.sessions.summaries({ sessionKeys });
179 return Array.isArray(response?.summaries) ? response.summaries : [];
180}
181
182function applySessionLabelSummaries(
183 set: ChatSet,

Callers 2

chat.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected