@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
18 lines (17 loc) • 427 B
JavaScript
/**
* Conversation Memory Types for NeuroLink
* Provides type-safe conversation storage and context management
*/
/**
* Error types specific to conversation memory
*/
export class ConversationMemoryError extends Error {
code;
details;
constructor(message, code, details) {
super(message);
this.code = code;
this.details = details;
this.name = "ConversationMemoryError";
}
}