(toolName?: string)
| 9 | export type EvidenceContentBlock = { type: 'evidence'; evidence: ChatEvidencePayload } |
| 10 | |
| 11 | export function isEvidenceTool(toolName?: string): boolean { |
| 12 | return toolName === RETRIEVE_CHAT_EVIDENCE_TOOL_NAME |
| 13 | } |
| 14 | |
| 15 | function isRecord(value: unknown): value is Record<string, unknown> { |
| 16 | return typeof value === 'object' && value !== null && !Array.isArray(value) |
no outgoing calls
no test coverage detected