import { Form, Modal, Select } from 'antd'; import { useTranslation } from 'react-i18next'; import { useDispatch, useSelector } from 'umi'; type FieldType = { embd_id?: string; img2txt_id?: string; llm_id?: string; asr_id?: string; }; const SsModal = () => { const dispatch = useDispatch(); const settingModel = useSelector((state: any) => state.settingModel); const { isShowSSModal, llmInfo = {}, tenantIfo } = settingModel; const [form] = Form.useForm(); const { t } = useTranslation(); const handleCancel = () => { dispatch({ type: 'settingModel/updateState', payload: { isShowSSModal: false, }, }); }; const handleOk = async () => { try { const values = await form.validateFields(); const retcode = await dispatch({ type: 'settingModel/set_tenant_info', payload: { ...values, tenant_id: tenantIfo.tenant_id, }, }); retcode === 0 && dispatch({ type: 'settingModel/updateState', payload: { isShowSSModal: false, }, }); } catch (errorInfo) { console.log('Failed:', errorInfo); } }; const handleChange = () => {}; return (
label="embedding 模型" name="embd_id" rules={[{ required: true, message: 'Please input value' }]} initialValue={tenantIfo.embd_id} > { const options = llmInfo[t] .filter((d: any) => d.model_type === 'chat') .map((d: any) => ({ label: d.llm_name, value: d.llm_name })); return { label: t, options }; })} /> label="image2text 模型" name="img2txt_id" rules={[{ required: true, message: 'Please input value' }]} initialValue={tenantIfo.img2txt_id} > { const options = llmInfo[t] .filter((d: any) => d.model_type === 'speech2text') .map((d: any) => ({ label: d.llm_name, value: d.llm_name })); return { label: t, options }; })} />
); }; export default SsModal;