import PageTools from '@/components/page-tools'; import { convertFileSize } from '@/utils'; import { useIntl } from '@umijs/max'; import { Col, Row, Table } from 'antd'; import { useContext } from 'react'; import { DashboardContext } from '../config/dashboard-context'; const projectColumns = [ { title: 'Name', dataIndex: 'name', key: 'name' }, { title: 'Token Quota', dataIndex: 'quota', key: 'quota', render: (text: any, record: any) => {record.quota}k }, { title: 'Token Utilization', dataIndex: 'utilization', key: 'utilization', render: (text: any, record: any) => {record.utilization}% }, { title: 'Members', dataIndex: 'members', key: 'members' } ]; const projectData = [ { id: 1, name: 'copilot-dev', quota: 100, utilization: 50, members: 4 }, { id: 2, name: 'rag-wiki', quota: 200, utilization: 70, members: 3 }, { id: 3, name: 'smart-auto-agent', quota: 100, utilization: 20, members: 5 }, { id: 4, name: 'office-auto-docs', quota: 100, utilization: 25, members: 1 }, { id: 5, name: 'smart-customer-service', quota: 100, utilization: 46, members: 2 } ]; const ActiveTable = () => { const intl = useIntl(); const data = useContext(DashboardContext).active_models || []; const modelColumns = [ { title: intl.formatMessage({ id: 'common.table.name' }), dataIndex: 'name', key: 'name' }, // { // title: intl.formatMessage({ id: 'dashboard.gpuutilization' }), // dataIndex: 'gpu_utilization', // key: 'gpu_utilization', // render: (text: any, record: any) => ( // // ) // }, { title: intl.formatMessage({ id: 'dashboard.allocatevram' }), dataIndex: 'resource_claim.memory', key: 'gpu_memory', render: (text: any, record: any) => { return ( {convertFileSize(record.resource_claim?.gpu_memory || 0)} /{' '} {convertFileSize(record.resource_claim?.memory || 0)} ); } }, { title: intl.formatMessage({ id: 'models.form.replicas' }), dataIndex: 'instance_count', key: 'instance_count' }, { title: intl.formatMessage({ id: 'dashboard.tokens' }), dataIndex: 'token_count', key: 'token_count' } ]; return ( {intl.formatMessage({ id: 'dashboard.activeModels' })} } right={false} />
); }; export default ActiveTable;