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

12 lines (11 loc) 451 B
/** * Memory Routes * Endpoints for conversation memory management */ import type { RouteGroup } from "../../types/index.js"; /** * Create memory management routes * Note: These routes provide a simplified interface to conversation memory. * The actual implementation depends on the memory manager type (ConversationMemoryManager or RedisConversationMemoryManager). */ export declare function createMemoryRoutes(basePath?: string): RouteGroup;