@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
15 lines (11 loc) • 718 B
text/typescript
import { mcpSystemDepsCheckService } from './MCPSystemDepsCheckService';
import { ManualInstallationChecker } from './checkers/ManualInstallationChecker';
import { NpmInstallationChecker } from './checkers/NpmInstallationChecker';
import { PythonInstallationChecker } from './checkers/PythonInstallationChecker';
// Register all checkers
mcpSystemDepsCheckService.registerChecker('npm', new NpmInstallationChecker());
mcpSystemDepsCheckService.registerChecker('python', new PythonInstallationChecker());
mcpSystemDepsCheckService.registerChecker('manual', new ManualInstallationChecker());
// Export service instance
export { mcpSystemDepsCheckService } from './MCPSystemDepsCheckService';
export * from './types';