'use client' import type { FC } from 'react' import React from 'react' import cn from 'classnames' import { useTranslation } from 'react-i18next' import s from './style.module.css' import Config from '@/app/components/explore/universal-chat/config' type Props = { modelId: string plugins: Record dataSets: any[] } const ConfigViewPanel: FC = ({ modelId, plugins, dataSets, }) => { const { t } = useTranslation() return (
{t('explore.universalChat.viewConfigDetailTip')}
) } export default React.memo(ConfigViewPanel)