From 3006124e6d041e51110f4d07fc0dc65214606039 Mon Sep 17 00:00:00 2001 From: Joel Date: Wed, 5 Jun 2024 11:31:44 +0800 Subject: [PATCH] feat: pricing page add llm load balancing info (#4942) --- web/app/components/billing/pricing/plan-item.tsx | 12 +++++++++++- web/i18n/en-US/billing.ts | 2 ++ web/i18n/zh-Hans/billing.ts | 2 ++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/web/app/components/billing/pricing/plan-item.tsx b/web/app/components/billing/pricing/plan-item.tsx index 4e020b20e8..e209e1c36d 100644 --- a/web/app/components/billing/pricing/plan-item.tsx +++ b/web/app/components/billing/pricing/plan-item.tsx @@ -119,7 +119,6 @@ const PlanItem: FC = ({
 {t('billing.plansCommon.supportItems.workflow')}
-
{comingSoon}
) case Plan.professional: @@ -132,6 +131,17 @@ const PlanItem: FC = ({
+ {t('billing.plansCommon.supportItems.bulkUpload')}
+
+ + +
{t('billing.plansCommon.supportItems.llmLoadingBalancing')}
+ {t('billing.plansCommon.supportItems.llmLoadingBalancingTooltip')}
+ } + > + + +
+ diff --git a/web/i18n/en-US/billing.ts b/web/i18n/en-US/billing.ts index 6e3a63998a..68982108cf 100644 --- a/web/i18n/en-US/billing.ts +++ b/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', diff --git a/web/i18n/zh-Hans/billing.ts b/web/i18n/zh-Hans/billing.ts index 9e74216b7f..bc20839abc 100644 --- a/web/i18n/zh-Hans/billing.ts +++ b/web/i18n/zh-Hans/billing.ts @@ -61,6 +61,8 @@ const translation = { bulkUpload: '批量上传文档', agentMode: '代理模式', workflow: '工作流', + llmLoadingBalancing: 'LLM 负载均衡', + llmLoadingBalancingTooltip: '向模型添加多个 API 密钥,有效绕过 API 速率限制。', }, comingSoon: '即将推出', member: '成员',