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.

44 lines (37 loc) 1.17 kB
import { t } from 'i18next'; import { notification } from '@/components/AntdStaticMethods'; import { Migration } from '@/migrations'; import { ConfigFile } from '@/types/exportConfig'; /** * V2 删除该方法 * 不再需要 Migration.migrate * @deprecated */ export const importConfigFile = async ( file: File, onConfigImport: (config: ConfigFile) => Promise<void>, ) => { const text = await file.text(); try { const config = JSON.parse(text); // it means the config file is exported from a newer version if ('schemaHash' in config) { notification.error({ description: t('import.incompatible.description', { ns: 'error' }), message: t('import.incompatible.title', { ns: 'error' }), }); return; } const { state, version } = Migration.migrate(config); await onConfigImport({ ...config, state, version }); } catch (error) { console.error(error); notification.error({ description: t('import.importConfigFile.description', { ns: 'error', reason: (error as any).message, }), message: t('import.importConfigFile.title', { ns: 'error' }), }); } };