Skip to content

Commit 4e655ba

Browse files
steebchenclaude
andcommitted
feat(devpass): adjust premium cap to 12/15/18%
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent f58de27 commit 4e655ba

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

apps/docs/content/learn/model-categories.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ Premium models are the most expensive to run, so DevPass plans apply a **weekly
3636

3737
| DevPass plan | Premium fair-use cap (per week) |
3838
| ------------ | ------------------------------- |
39-
| **Lite** | 10% of monthly credits |
39+
| **Lite** | 12% of monthly credits |
4040
| **Pro** | 15% of monthly credits |
41-
| **Max** | 20% of monthly credits |
41+
| **Max** | 18% of monthly credits |
4242

4343
<Callout type="info">
4444
Within DevPass, the weekly cap applies only to **premium** models. Standard

apps/ui/src/content/changelog/2026-06-10-chat-plans-service-tiers-product-roundup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Building on the [embeddable wallets SDK](https://llmgateway.io/blog/embeddable-a
4949

5050
## Model Categories & Fair-Use Caps
5151

52-
Every model is now categorized as **Premium** or **Standard**, powering dashboard filters and analytics. For **DevPass** coding plans, premium models get a rolling weekly fair-use cap (10%/15%/20% of monthly credits for Lite/Pro/Max) so flagship capacity stays available for everyone — the API and pay-as-you-go credits are unaffected.
52+
Every model is now categorized as **Premium** or **Standard**, powering dashboard filters and analytics. For **DevPass** coding plans, premium models get a rolling weekly fair-use cap (12%/15%/18% of monthly credits for Lite/Pro/Max) so flagship capacity stays available for everyone — the API and pay-as-you-go credits are unaffected.
5353

5454
[How categories and caps work →](https://docs.llmgateway.io/learn/model-categories)
5555

packages/shared/src/dev-plans.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ export function getDevPlanCreditsLimit(tier: DevPlanTier): number {
2424
* exact regardless of DEV_PLAN_CREDITS_MULTIPLIER.
2525
*/
2626
export const DEV_PLAN_PREMIUM_WEEKLY_PERCENT: Record<DevPlanTier, number> = {
27-
lite: 0.1,
27+
lite: 0.12,
2828
pro: 0.15,
29-
max: 0.2,
29+
max: 0.18,
3030
};
3131

3232
export function getDevPlanPremiumWeeklyLimit(tier: DevPlanTier): number {

0 commit comments

Comments
 (0)