From 0c8f7d89c876921709cb4eeeb6954878592c1469 Mon Sep 17 00:00:00 2001 From: Devanshu Rajesh Chicholikar Date: Sat, 28 Feb 2026 10:10:02 -0500 Subject: [PATCH] fix: bump enterprise function limit from 200k to 500k Real-world codebase (effect-ts) has 200,437 functions -- just 437 over the old 200,000 cap. Enterprise tier should handle large codebases without arbitrary limits causing friction. 289 tests pass. --- backend/services/user_limits.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/services/user_limits.py b/backend/services/user_limits.py index a95c404..e467dc6 100644 --- a/backend/services/user_limits.py +++ b/backend/services/user_limits.py @@ -66,7 +66,7 @@ class TierLimits: UserTier.ENTERPRISE: TierLimits( max_repos=None, # Unlimited max_files_per_repo=50000, - max_functions_per_repo=200000, + max_functions_per_repo=500000, playground_searches_per_day=None, max_team_members=None, priority_indexing=True,