UNPKG

@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.

31 lines (30 loc) 485 B
/** * System Dependency Check Result */ export interface SystemDependencyCheckResult { /** * Error message */ error?: string; installInstructions?: { current?: string; manual?: string; }; /** * Whether installed */ installed: boolean; /** * Whether meets version requirements */ meetRequirement: boolean; /** * Dependency name */ name: string; requiredVersion?: string; /** * Version information */ version?: string; }