From 1e46bfa1f43ef129052fa4c5e63123d78db8e4c4 Mon Sep 17 00:00:00 2001 From: liangxu Date: Thu, 30 Apr 2026 17:15:09 +0800 Subject: [PATCH] chore(membership): lower image storage quotas for free and pro tiers Reduce image_storage_bytes from 500MB to 25MB on free and from 1GB to 500MB on pro to align quotas with current storage cost expectations. Co-Authored-By: Claude Opus 4.7 (1M context) --- server/configs/config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/configs/config.yaml b/server/configs/config.yaml index 0d7b014..0c798da 100644 --- a/server/configs/config.yaml +++ b/server/configs/config.yaml @@ -104,7 +104,7 @@ membership: article_quota_cycle: monthly ai_points_monthly: 1000 ai_point_base_chars: 1000 - image_storage_bytes: 524288000 + image_storage_bytes: 26214000 company_limit: 1 subscription_duration: 720h - code: pro @@ -113,7 +113,7 @@ membership: article_quota_cycle: monthly ai_points_monthly: 1500 ai_point_base_chars: 1000 - image_storage_bytes: 1073741824 + image_storage_bytes: 524288000 company_limit: 2 subscription_duration: 720h