diff --git a/Anthropic.py b/Anthropic.py index e6d5c09..4d5139f 100644 --- a/Anthropic.py +++ b/Anthropic.py @@ -51,11 +51,11 @@ async def check_anthropic(key: APIKey, session): def get_tier(tokenlimit, ratelimit): tier_mapping = { - (25000, 5): "Free Tier", - (50000, 50): "Tier 1", - (100000, 1000): "Tier 2", - (200000, 2000): "Tier 3", - (400000, 4000): "Tier 4" + (20000, 5): "Free Tier", + (40000, 50): "Tier 1", + (80000, 1000): "Tier 2", + (160000, 2000): "Tier 3", + (320000, 4000): "Tier 4" } return tier_mapping.get((tokenlimit, ratelimit), "Scale Tier")