UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with working MCP integration, multi-provider support, and professional CLI. Built-in tools operational, 58+ external MCP servers discoverable. Connect to filesystem, GitHub, database operations, and more. Build, test, and

17 lines (16 loc) 646 B
import type { NeuroLinkMiddleware } from "../types.js"; /** * Create analytics middleware for tracking AI model usage * Collects metrics on token usage, response times, and model performance */ export declare function createAnalyticsMiddleware(): NeuroLinkMiddleware; /** * Get collected metrics from analytics middleware * Note: This is a utility function for accessing metrics */ export declare function getAnalyticsMetrics(): Map<string, Record<string, unknown>>; /** * Clear collected metrics from analytics middleware * Note: This is a utility function for clearing metrics */ export declare function clearAnalyticsMetrics(): void;