fix(FN-1989): stabilize triage fallback

This commit is contained in:
gsxdsm
2026-04-17 01:49:25 -07:00
parent 3c1afafa52
commit 4c2db876da
10 changed files with 253 additions and 3252 deletions

View File

@@ -226,6 +226,14 @@ function isRetryableModelSelectionError(message: string): boolean {
return normalized.includes("rate limit")
|| normalized.includes("too many requests")
|| normalized.includes("429")
|| normalized.includes("401")
|| normalized.includes("403")
|| normalized.includes("unauthorized")
|| normalized.includes("forbidden")
|| normalized.includes("authentication")
|| normalized.includes("invalid api key")
|| normalized.includes("invalid key")
|| normalized.includes("api key")
|| normalized.includes("overloaded")
|| normalized.includes("quota")
|| normalized.includes("capacity")