Could you please tell me when KiroAi's quota resets? #5001
-
|
Could you please tell me when KiroAi's quota resets? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Hey @awjdoiajdi! Kiro's free quota resets on a monthly cycle (the free tier is roughly 50 credits/month on the AWS Builder ID side), not a daily/5-hour window. The catch is the exact reset moment is per-account and controlled by AWS, not by OmniRoute -- so rather than guess, OmniRoute reads the real reset timestamp straight from Kiro's usage API (
If your account returns no per-resource breakdown (some IAM / Builder ID accounts don't expose it), the panel will say so and the reset date won't be available -- in that case the practical answer is "start of your next monthly cycle." Related thread: #1809. If you tell me what the usage panel shows for your Kiro account, I can help interpret it. |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for the screenshots @awjdoiajdi -- yes, what you're seeing is expected behavior for a free Kiro account, not a bug. Two separate things are happening: 1. The Those 400s come straight from Kiro upstream as When that 400 happens, OmniRoute's resilience layer locks just that model for that connection and moves on to a working one -- which is why you see the 400 rows interleaved with successful 200 rows. Nothing is broken; the combo is doing its job. 2. The This one is different from the plain 3. The slow / tiny-output requests (81s for 17 tokens, "1m 27s / 3 tokens") That's not a Kiro pathology. The 400 rows are fast skips; the slow successful one is a large agentic prompt (43,331 input tokens) where the model produced a short turn -- a tool call or an early finish returns very few output tokens even though the upstream spent real time on it. Combo fallback re-tries (skipping the locked Opus/4.6 models before landing on a free one) also add a bit of wall-clock. For a free Kiro account on a big prompt, those durations are within normal range. Recommendation: pin your Kiro combo to the free-tier models only -- |
Beta Was this translation helpful? Give feedback.



Thanks for the screenshots @awjdoiajdi -- yes, what you're seeing is expected behavior for a free Kiro account, not a bug. Two separate things are happening:
1. The
400 UPSTREAMrows (opus-4.6/4.7/4.8, sonnet-4.6, andkr/claude-sonnet-4.5)Those 400s come straight from Kiro upstream as
Improperly formed request, which is Kiro's signal for "this model isn't available on your account tier." Kiro's model entitlement is per-account / per-tier on the AWS Builder ID side: the free tier servesclaude-sonnet-4.5,claude-haiku-4.5, andglm-5(exactly the ones returning200for you), whileclaude-opus-4.6/4.7/4.8andclaude-sonnet-4.6require a higher Kiro plan (Pro / Pro+ / Power). OmniRoute lists…