mirror of
https://github.com/cunnymessiah/keychecker.git
synced 2026-05-10 18:39:04 -07:00
update anthropic rate limits for sonnet changes
This commit is contained in:
+5
-5
@@ -51,11 +51,11 @@ async def check_anthropic(key: APIKey, session):
|
|||||||
|
|
||||||
def get_tier(tokenlimit, ratelimit):
|
def get_tier(tokenlimit, ratelimit):
|
||||||
tier_mapping = {
|
tier_mapping = {
|
||||||
(25000, 5): "Free Tier",
|
(20000, 5): "Free Tier",
|
||||||
(50000, 50): "Tier 1",
|
(40000, 50): "Tier 1",
|
||||||
(100000, 1000): "Tier 2",
|
(80000, 1000): "Tier 2",
|
||||||
(200000, 2000): "Tier 3",
|
(160000, 2000): "Tier 3",
|
||||||
(400000, 4000): "Tier 4"
|
(320000, 4000): "Tier 4"
|
||||||
}
|
}
|
||||||
return tier_mapping.get((tokenlimit, ratelimit), "Scale Tier")
|
return tier_mapping.get((tokenlimit, ratelimit), "Scale Tier")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user