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.

33 lines (30 loc) 823 B
import { isDesktop } from '@/const/version'; import { LobeBuiltinTool } from '@/types/tool'; import { ArtifactsManifest } from './artifacts'; import { DalleManifest } from './dalle'; import { LocalSystemManifest } from './local-system'; import { WebBrowsingManifest } from './web-browsing'; export const builtinTools: LobeBuiltinTool[] = [ { identifier: ArtifactsManifest.identifier, manifest: ArtifactsManifest, type: 'builtin', }, { identifier: DalleManifest.identifier, manifest: DalleManifest, type: 'builtin', }, { hidden: !isDesktop, identifier: LocalSystemManifest.identifier, manifest: LocalSystemManifest, type: 'builtin', }, { hidden: true, identifier: WebBrowsingManifest.identifier, manifest: WebBrowsingManifest, type: 'builtin', }, ];