From 77c023102e63054edcf3e0c4c7f89e2fb84e16d0 Mon Sep 17 00:00:00 2001 From: wwq Date: Wed, 22 Apr 2026 11:10:41 +0800 Subject: [PATCH] feat(plan): bump free plan model quota from 1 to 4 - Increase the model quota for the free tier from 1 to 4. --- api/app/config/default_free_plan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/app/config/default_free_plan.py b/api/app/config/default_free_plan.py index 409b4f7b..a9ac3c66 100644 --- a/api/app/config/default_free_plan.py +++ b/api/app/config/default_free_plan.py @@ -62,7 +62,7 @@ def _build_default_free_plan(): "memory_engine_quota": 1, "end_user_quota": 1, "ontology_project_quota": 3, - "model_quota": 1, + "model_quota": 4, "api_ops_rate_limit": 50, }, }