tweak: gemini retry message to not be explicitly about gemini 3 (#4864)

Co-authored-by: jesuso <j.ochoa@norteconecta.net>
This commit is contained in:
jaov 2025-11-28 13:14:53 -04:00 committed by GitHub
parent cf1f63eda3
commit fa84612357
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -850,7 +850,7 @@ export function Prompt(props: PromptProps) {
const r = retry()
if (!r) return
if (r.message.includes("exceeded your current quota") && r.message.includes("gemini"))
return "gemini 3 way too hot right now"
return "gemini is way too hot right now"
if (r.message.length > 50) return r.message.slice(0, 50) + "..."
return r.message
})