@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
17 lines • 728 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";
// Core types and interfaces
// Factory for creating and applying middleware chains
export { MiddlewareFactory };
// Built-in middleware creators
export { createLifecycleMiddleware } from "./builtin/lifecycle.js";
// Export the factory as the default export for clean, direct usage
export default MiddlewareFactory;
//# sourceMappingURL=index.js.map