MCPcopy Create free account
hub / github.com/ChatLab/ChatLab / isEvidencePayload

Function isEvidencePayload

src/stores/aiChatEvidenceBlocks.ts:19–21  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

17}
18
19export function isEvidencePayload(value: unknown): value is ChatEvidencePayload {
20 return isRecord(value) && value.version === 1 && typeof value.query === 'string' && Array.isArray(value.groups)
21}
22
23/**
24 * 从工具结果中提取证据 payload。

Callers 2

extractEvidencePayloadFunction · 0.85

Calls 1

isRecordFunction · 0.70

Tested by

no test coverage detected