@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
14 lines (13 loc) • 566 B
JavaScript
/**
* NeuroLink Middleware System
*
* This module provides a comprehensive middleware system for NeuroLink that integrates
* with the AI SDK's wrapLanguageModel functionality. It allows for modular enhancement
* of language models with features like analytics, guardrails, caching, and more.
*/
// Import types and classes
import { MiddlewareFactory } from "./factory.js";
// Factory for creating and applying middleware chains
export { MiddlewareFactory };
// Export the factory as the default export for clean, direct usage
export default MiddlewareFactory;