diff options
| author | jaov <[email protected]> | 2025-11-28 13:14:53 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-11-28 11:14:53 -0600 |
| commit | fa84612357f6b207c2d15d2003e3e271c610ee0f (patch) | |
| tree | 72fcc0c6d591daaf11383fd08da0171890f8d1f5 | |
| parent | cf1f63eda38f308103418be8f36b59856e051e5c (diff) | |
| download | opencode-fa84612357f6b207c2d15d2003e3e271c610ee0f.tar.gz opencode-fa84612357f6b207c2d15d2003e3e271c610ee0f.zip | |
tweak: gemini retry message to not be explicitly about gemini 3 (#4864)
Co-authored-by: jesuso <[email protected]>
| -rw-r--r-- | packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx b/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx index 06e9a49e6..e749c9c17 100644 --- a/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx +++ b/packages/opencode/src/cli/cmd/tui/component/prompt/index.tsx @@ -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 }) |
