From 42be1781e058379fce1a65253bd626b9511e54d3 Mon Sep 17 00:00:00 2001 From: southseact-3d Date: Sun, 8 Feb 2026 13:33:32 +0000 Subject: [PATCH] chore: reduce token limits for Professional and Enterprise plans - Professional plan: reduced from 10M to 5M tokens per month - Enterprise plan: reduced from 50M to 20M tokens per month - Hobby (50k) and Starter (100k) remain unchanged These limits align with the updated pricing structure from shopify-ai. --- chat/server.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chat/server.js b/chat/server.js index 5163387..aeaf580 100644 --- a/chat/server.js +++ b/chat/server.js @@ -424,8 +424,8 @@ const PLAN_APP_LIMITS = { const PLAN_TOKEN_LIMITS = { hobby: 50_000, starter: 100_000, - professional: 10_000_000, - enterprise: 50_000_000, + professional: 5_000_000, + enterprise: 20_000_000, }; // Default token rates (price per 1M tokens in minor units/cents)