UNPKG

@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

50 lines (49 loc) 1.15 kB
/** * NeuroLink Configuration Types * Industry standard camelCase interfaces for config management */ /** * Default configuration values */ export const DEFAULT_CONFIG = { providers: { googleAi: { model: "gemini-2.5-pro", available: true, features: ["streaming", "functionCalling"], }, }, performance: { cache: { enabled: true, ttlMs: 300000, // 5 minutes strategy: "memory", maxSize: 1000, }, fallback: { enabled: true, maxAttempts: 3, delayMs: 1000, circuitBreaker: true, }, timeoutMs: 30000, // 30 seconds maxConcurrency: 5, }, analytics: { enabled: true, trackTokens: true, trackCosts: true, trackPerformance: true, retention: { days: 30, maxEntries: 10000, }, }, tools: { disableBuiltinTools: false, allowCustomTools: true, maxToolsPerProvider: 100, enableMCPTools: true, }, configVersion: "3.0.1", };