import { IModalManagerChildrenProps } from '@/components/modal-manager'; import { LlmModelType } from '@/constants/knowledge'; import { useTranslate } from '@/hooks/common-hooks'; import { ISystemModelSettingSavingParams } from '@/hooks/llm-hooks'; import { Form, Modal, Select } from 'antd'; import { useEffect } from 'react'; import { useFetchSystemModelSettingOnMount } from '../hooks'; interface IProps extends Omit { loading: boolean; onOk: ( payload: Omit, ) => void; } const SystemModelSettingModal = ({ visible, hideModal, onOk, loading, }: IProps) => { const [form] = Form.useForm(); const { systemSetting: initialValues, allOptions } = useFetchSystemModelSettingOnMount(); const { t } = useTranslate('setting'); const handleOk = async () => { const values = await form.validateFields(); onOk(values); }; useEffect(() => { if (visible) { form.setFieldsValue(initialValues); } }, [form, initialValues, visible]); const onFormLayoutChange = () => {}; return (