import { PlusOutlined } from '@ant-design/icons'; import { Form, Input, message, Select, Switch, Upload } from 'antd'; import classNames from 'classnames'; import { ISegmentedContentProps } from '../interface'; import KnowledgeBaseItem from '@/components/knowledge-base-item'; import { useTranslate } from '@/hooks/common-hooks'; import { useFetchTenantInfo } from '@/hooks/user-setting-hooks'; import { useCallback } from 'react'; import styles from './index.less'; const AssistantSetting = ({ show, form }: ISegmentedContentProps) => { const { t } = useTranslate('chat'); const { data } = useFetchTenantInfo(); const normFile = (e: any) => { if (Array.isArray(e)) { return e; } return e?.fileList; }; const handleTtsChange = useCallback( (checked: boolean) => { if (checked && !data.tts_id) { message.error(`Please set TTS model firstly. Setting >> Model Providers >> System model settings`); form.setFieldValue(['prompt_config', 'tts'], false); } }, [data, form], ); const uploadButtion = ( ); return (
false} showUploadList={{ showPreviewIcon: false, showRemoveIcon: false }} > {show ? uploadButtion : null} {/* */}
); }; export default AssistantSetting;