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.

17 lines (13 loc) 408 B
import { LobeTool } from '@/types/tool'; export type PluginsSettings = Record<string, any>; export interface PluginState { installedPlugins: LobeTool[]; loadingInstallPlugins: boolean; pluginsSettings: PluginsSettings; updatePluginSettingsSignal?: AbortController; } export const initialPluginState: PluginState = { installedPlugins: [], loadingInstallPlugins: true, pluginsSettings: {}, };