feat: pricing page add llm load balancing info (#4942)

This commit is contained in:
Joel 2024-06-05 11:31:44 +08:00 committed by GitHub
parent 3d276f4a7f
commit 3006124e6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 15 additions and 1 deletions

View File

@ -119,7 +119,6 @@ const PlanItem: FC<Props> = ({
<div className='flex items-center'> <div className='flex items-center'>
<div className='mr-0.5'>&nbsp;{t('billing.plansCommon.supportItems.workflow')}</div> <div className='mr-0.5'>&nbsp;{t('billing.plansCommon.supportItems.workflow')}</div>
</div> </div>
<div>{comingSoon}</div>
</div> </div>
</div>) </div>)
case Plan.professional: case Plan.professional:
@ -132,6 +131,17 @@ const PlanItem: FC<Props> = ({
<div className='mt-3.5 flex items-center space-x-1'> <div className='mt-3.5 flex items-center space-x-1'>
<div>+ {t('billing.plansCommon.supportItems.bulkUpload')}</div> <div>+ {t('billing.plansCommon.supportItems.bulkUpload')}</div>
</div> </div>
<div className='mt-3.5 flex items-center space-x-1'>
<span>+ </span>
<div>{t('billing.plansCommon.supportItems.llmLoadingBalancing')}</div>
<TooltipPlus
popupContent={
<div className='w-[200px]'>{t('billing.plansCommon.supportItems.llmLoadingBalancingTooltip')}</div>
}
>
<HelpCircle className='w-3 h-3 text-gray-400' />
</TooltipPlus>
</div>
<div className='mt-3.5 flex items-center space-x-1'> <div className='mt-3.5 flex items-center space-x-1'>
<div className='flex items-center'> <div className='flex items-center'>
+ +

View File

@ -61,6 +61,8 @@ const translation = {
bulkUpload: 'Bulk upload documents', bulkUpload: 'Bulk upload documents',
agentMode: 'Agent Mode', agentMode: 'Agent Mode',
workflow: 'Workflow', workflow: 'Workflow',
llmLoadingBalancing: 'LLM Load Balancing',
llmLoadingBalancingTooltip: 'Add multiple API keys to models, effectively bypassing the API rate limits. ',
}, },
comingSoon: 'Coming soon', comingSoon: 'Coming soon',
member: 'Member', member: 'Member',

View File

@ -61,6 +61,8 @@ const translation = {
bulkUpload: '批量上传文档', bulkUpload: '批量上传文档',
agentMode: '代理模式', agentMode: '代理模式',
workflow: '工作流', workflow: '工作流',
llmLoadingBalancing: 'LLM 负载均衡',
llmLoadingBalancingTooltip: '向模型添加多个 API 密钥,有效绕过 API 速率限制。',
}, },
comingSoon: '即将推出', comingSoon: '即将推出',
member: '成员', member: '成员',