From 5a9d80c5185d858cb92975c466b38d90047a54b3 Mon Sep 17 00:00:00 2001 From: liangxu Date: Wed, 29 Apr 2026 00:02:55 +0800 Subject: [PATCH] chore(server/membership): seed AI points for free and plus default plans Free plan now ships with 10 AI points/month and Plus with 1000, replacing the placeholder zeroes left over when the feature was first wired up. 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 bf83df8..0d7b014 100644 --- a/server/configs/config.yaml +++ b/server/configs/config.yaml @@ -92,7 +92,7 @@ membership: name: Free article_generation: 3 article_quota_cycle: lifetime - ai_points_monthly: 0 + ai_points_monthly: 10 ai_point_base_chars: 1000 image_storage_bytes: 10485760 company_limit: 1 @@ -102,7 +102,7 @@ membership: name: Plus article_generation: 200 article_quota_cycle: monthly - ai_points_monthly: 0 + ai_points_monthly: 1000 ai_point_base_chars: 1000 image_storage_bytes: 524288000 company_limit: 1