codecrucible-synth
Version:
Production-Ready AI Development Platform with Multi-Voice Synthesis, Smithery MCP Integration, Enterprise Security, and Zero-Timeout Reliability
29 lines • 915 B
JavaScript
/**
* Core client module - Re-exports from refactored unified model client
* This file bridges the old import structure with the new refactored system
*/
export { UnifiedModelClient } from '../refactor/unified-model-client.js';
// Export a default config creator function
export function createDefaultUnifiedClientConfig() {
return {
providers: [
{
type: 'auto',
endpoint: 'http://localhost:11434',
},
],
executionMode: 'auto',
fallbackChain: ['ollama', 'lm-studio', 'auto'],
performanceThresholds: {
fastModeMaxTokens: 1000,
timeoutMs: 30000,
maxConcurrentRequests: 3,
},
security: {
enableSandbox: true,
maxInputLength: 10000,
allowedCommands: ['npm', 'node', 'git'],
},
};
}
//# sourceMappingURL=client.js.map