import React from 'react'; import { Box, Flex, Grid } from '@chakra-ui/react'; import { useTranslation } from 'next-i18next'; import { useSystemStore } from '@/web/common/system/useSystemStore'; const Points = () => { const { t } = useTranslation(); const { llmModelList, audioSpeechModelList, vectorModelList, whisperModel } = useSystemStore(); return ( {t('support.wallet.subscription.Ai points')} AI语言模型 {llmModelList?.map((item, i) => ( {item.name} {item.charsPointsPrice}积分 / 1000字符 ))} 索引模型 文档索引 & 对话索引 {vectorModelList?.map((item, i) => ( {item.name} {item.charsPointsPrice}积分 / 1000字符 ))} 语音播放 {audioSpeechModelList?.map((item, i) => ( {item.name} {item.charsPointsPrice}积分 / 1000字符 ))} 语音输入 {whisperModel?.name} {whisperModel?.charsPointsPrice}积分 / 分钟 ); }; export default React.memo(Points);