@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.
19 lines (14 loc) • 491 B
text/typescript
import { StateCreator } from 'zustand/vanilla';
import { ChatStore } from '@/store/chat/store';
import { ChatDallEAction, dalleSlice } from './dalle';
import { SearchAction, searchSlice } from './searXNG';
export interface ChatBuiltinToolAction extends ChatDallEAction, SearchAction {}
export const chatToolSlice: StateCreator<
ChatStore,
[['zustand/devtools', never]],
[],
ChatBuiltinToolAction
> = (...params) => ({
...dalleSlice(...params),
...searchSlice(...params),
});