Pārlūkot izejas kodu

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

Joel 10 mēneši atpakaļ
vecāks
revīzija
3006124e6d

+ 11 - 1
web/app/components/billing/pricing/plan-item.tsx

@@ -119,7 +119,6 @@ const PlanItem: FC<Props> = ({
             <div className='flex items-center'>
               <div className='mr-0.5'>&nbsp;{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'>
                 +

+ 2 - 0
web/i18n/en-US/billing.ts

@@ -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',

+ 2 - 0
web/i18n/zh-Hans/billing.ts

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