mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-18 02:35:56 +08:00
feat: pricing page add llm load balancing info (#4942)
This commit is contained in:
parent
3d276f4a7f
commit
3006124e6d
@ -119,7 +119,6 @@ const PlanItem: FC<Props> = ({
|
||||
<div className='flex items-center'>
|
||||
<div className='mr-0.5'> {t('billing.plansCommon.supportItems.workflow')}</div>
|
||||
</div>
|
||||
<div>{comingSoon}</div>
|
||||
</div>
|
||||
</div>)
|
||||
case Plan.professional:
|
||||
@ -132,6 +131,17 @@ const PlanItem: FC<Props> = ({
|
||||
<div className='mt-3.5 flex items-center space-x-1'>
|
||||
<div>+ {t('billing.plansCommon.supportItems.bulkUpload')}</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='flex items-center'>
|
||||
+
|
||||
|
@ -61,6 +61,8 @@ const translation = {
|
||||
bulkUpload: 'Bulk upload documents',
|
||||
agentMode: 'Agent Mode',
|
||||
workflow: 'Workflow',
|
||||
llmLoadingBalancing: 'LLM Load Balancing',
|
||||
llmLoadingBalancingTooltip: 'Add multiple API keys to models, effectively bypassing the API rate limits. ',
|
||||
},
|
||||
comingSoon: 'Coming soon',
|
||||
member: 'Member',
|
||||
|
@ -61,6 +61,8 @@ const translation = {
|
||||
bulkUpload: '批量上传文档',
|
||||
agentMode: '代理模式',
|
||||
workflow: '工作流',
|
||||
llmLoadingBalancing: 'LLM 负载均衡',
|
||||
llmLoadingBalancingTooltip: '向模型添加多个 API 密钥,有效绕过 API 速率限制。',
|
||||
},
|
||||
comingSoon: '即将推出',
|
||||
member: '成员',
|
||||
|
Loading…
x
Reference in New Issue
Block a user