revert: remove unnecessary TODO comment from config.py

This commit is contained in:
Zamil Majdy
2026-03-13 17:59:00 +07:00
parent 3120981e4b
commit 211be3aff1

View File

@@ -73,8 +73,6 @@ class ChatConfig(BaseSettings):
# Rate limiting — token-based limits per day and per week.
# Each CoPilot turn consumes ~10-15K tokens (system prompt + tool schemas + response),
# so 2.5M daily allows ~170-250 turns/day which is reasonable for normal use.
# TODO: These are global deploy-time constants. For per-user or per-plan limits,
# move to the database (e.g. UserPlan table) and look up in get_usage_status.
daily_token_limit: int = Field(
default=2_500_000,
description="Max tokens per day, resets at midnight UTC (0 = unlimited)",