UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio

11 lines (10 loc) 506 B
/** * Safe metadata filtering for observability exporters. * * Only these attribute keys are forwarded to third-party backends as trace * metadata. User prompts (input), LLM responses (output), error stacks, and * any other potentially sensitive data are excluded to prevent PII leaks. */ import type { SpanAttributes } from "../../types/index.js"; export declare const SAFE_METADATA_KEYS: Set<string>; export declare function filterSafeMetadata(attributes: SpanAttributes): Record<string, unknown>;