@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
50 lines (49 loc) • 1.18 kB
JavaScript
/**
* NeuroLink Configuration Types
* Centralized configuration type definitions following the established architecture pattern
*/
/**
* 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",
};