import IconFont from '@/components/icon-font'; import breakpoints from '@/config/breakpoints'; import HotKeys from '@/config/hotkeys'; import useWindowResize from '@/hooks/use-window-resize'; import { MessageOutlined, OneToOneOutlined } from '@ant-design/icons'; import { PageContainer } from '@ant-design/pro-components'; import { useIntl } from '@umijs/max'; import { Button, Segmented, Space, Tabs, TabsProps } from 'antd'; import classNames from 'classnames'; import _ from 'lodash'; import { useCallback, useEffect, useRef, useState } from 'react'; import { useHotkeys } from 'react-hotkeys-hook'; import { queryModelsList } from './apis'; import GroundLeft from './components/ground-left'; import MultipleChat from './components/multiple-chat'; import './style/play-ground.less'; const Playground: React.FC = () => { const intl = useIntl(); const { size } = useWindowResize(); const [activeKey, setActiveKey] = useState('chat'); const groundLeftRef = useRef(null); const groundRerankerRef = useRef(null); const [modelList, setModelList] = useState[]>([]); const [loaded, setLoaded] = useState(false); const optionsList = [ { label: intl.formatMessage({ id: 'menu.playground.chat' }), value: 'chat', icon: }, { label: intl.formatMessage({ id: 'menu.compare' }), value: 'compare', icon: } ]; const handleViewCode = useCallback(() => { if (activeKey === 'reranker') { groundRerankerRef.current?.viewCode?.(); } else if (activeKey === 'chat') { groundLeftRef.current?.viewCode?.(); } }, [groundLeftRef, groundRerankerRef, activeKey]); const handleToggleCollapse = useCallback(() => { if (activeKey === 'reranker') { groundRerankerRef.current?.setCollapse?.(); return; } groundLeftRef.current?.setCollapse?.(); }, [groundLeftRef, groundRerankerRef, activeKey]); const items: TabsProps['items'] = [ { key: 'chat', label: 'Chat', children: ( ) }, { key: 'compare', label: 'Compare', children: } ]; useEffect(() => { if (size.width < breakpoints.lg) { if (!groundLeftRef.current?.collapse) { groundLeftRef.current?.setCollapse?.(); } } }, [size.width]); useEffect(() => { const getModelList = async () => { try { const params = { embedding_only: false }; const res = await queryModelsList(params); const list = _.map(res.data || [], (item: any) => { return { value: item.id, label: item.id }; }) as Global.BaseOption[]; return list; } catch (error) { console.error(error); return []; } }; const fetchData = async () => { try { const modelist = await getModelList(); setModelList(modelist); } catch (error) { setLoaded(true); } }; fetchData(); }, []); const renderExtra = () => { if (activeKey === 'compare') { return false; } return ( ); }; useHotkeys( HotKeys.RIGHT.join(','), () => { groundLeftRef.current?.setCollapse?.(); }, { preventDefault: true } ); return ( {intl.formatMessage({ id: 'menu.playground.chat' })} { setActiveKey(key)} > } ), breadcrumb: {} }} extra={renderExtra()} className={classNames('playground-container', { compare: activeKey === 'compare', chat: activeKey !== 'compare' })} >
); }; export default Playground;