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.

14 lines (11 loc) 588 B
import { useGlobalStore } from '@/store/global'; import { systemStatusSelectors } from '@/store/global/selectors'; import { useImageStore } from '@/store/image'; import { useUserStore } from '@/store/user'; import { authSelectors } from '@/store/user/slices/auth/selectors'; export const useFetchGenerationTopics = () => { const isDBInited = useGlobalStore(systemStatusSelectors.isDBInited); const isLogin = useUserStore(authSelectors.isLogin); const useFetchGenerationTopics = useImageStore((s) => s.useFetchGenerationTopics); useFetchGenerationTopics(isDBInited, isLogin); };