@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 (12 loc) • 441 B
text/typescript
import { LobeChatPluginManifest, LobePluginType } from '@lobehub/chat-plugin-sdk';
import { CustomPluginParams } from './plugin';
import { LobeToolType } from './tool';
export interface LobeTool {
customParams?: CustomPluginParams | null;
identifier: string;
manifest?: LobeChatPluginManifest | null;
settings?: any;
type: LobeToolType;
}
export type LobeToolRenderType = LobePluginType | 'builtin';
export * from './builtin';