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

27 lines (26 loc) 919 B
/** * LangSmith Exporter * Exports spans to LangSmith observability platform */ import type { ExporterHealthStatus, ExportResult, LangSmithExporterConfig, SpanData } from "../../types/index.js"; import { BaseExporter } from "./baseExporter.js"; /** * LangSmith exporter for LangChain ecosystem observability * Supports runs with proper type mapping */ export declare class LangSmithExporter extends BaseExporter { private readonly apiKey; private readonly projectName; private readonly endpoint; constructor(config: LangSmithExporterConfig); initialize(): Promise<void>; exportSpan(span: SpanData): Promise<ExportResult>; exportBatch(spans: SpanData[]): Promise<ExportResult>; flush(): Promise<void>; shutdown(): Promise<void>; healthCheck(): Promise<ExporterHealthStatus>; /** * Verify connectivity to LangSmith API */ protected ping(): Promise<void>; }