mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-18 02:25:52 +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='flex items-center'>
|
||||||
<div className='mr-0.5'> {t('billing.plansCommon.supportItems.workflow')}</div>
|
<div className='mr-0.5'> {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'>
|
||||||
+
|
+
|
||||||
|
@ -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',
|
||||||
|
@ -61,6 +61,8 @@ const translation = {
|
|||||||
bulkUpload: '批量上传文档',
|
bulkUpload: '批量上传文档',
|
||||||
agentMode: '代理模式',
|
agentMode: '代理模式',
|
||||||
workflow: '工作流',
|
workflow: '工作流',
|
||||||
|
llmLoadingBalancing: 'LLM 负载均衡',
|
||||||
|
llmLoadingBalancingTooltip: '向模型添加多个 API 密钥,有效绕过 API 速率限制。',
|
||||||
},
|
},
|
||||||
comingSoon: '即将推出',
|
comingSoon: '即将推出',
|
||||||
member: '成员',
|
member: '成员',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user