@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
13 lines (12 loc) • 747 B
TypeScript
/**
* 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 { MiddlewareFactory } from "./factory.js";
export type { NeuroLinkMiddleware, MiddlewareConfig, MiddlewareContext, MiddlewareConditions, MiddlewareRegistrationOptions, MiddlewareExecutionResult, MiddlewareChainStats, MiddlewarePreset, MiddlewareFactoryOptions, BuiltInMiddlewareType, } from "../types/middlewareTypes.js";
export type { LanguageModelV1Middleware } from "ai";
export { MiddlewareFactory };
export default MiddlewareFactory;