summaryrefslogtreecommitdiff
path: root/packages/cli/src
diff options
context:
space:
mode:
authorN. Taylor Mullen <[email protected]>2025-06-25 19:33:32 +0200
committerGitHub <[email protected]>2025-06-25 17:33:32 +0000
commit3a369ddec3b226dea9d1a9dcc3bae048310edffd (patch)
tree2a0f6250ef3b37708a6a8ed562e82771d6183962 /packages/cli/src
parent0915bf7d677504c28b079693a0fe1c853adc456e (diff)
feat: Refine model fallback messaging to reflect reality. (#1527)
Diffstat (limited to 'packages/cli/src')
-rw-r--r--packages/cli/src/ui/App.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/cli/src/ui/App.tsx b/packages/cli/src/ui/App.tsx
index 2d2e9db4..d57a1b93 100644
--- a/packages/cli/src/ui/App.tsx
+++ b/packages/cli/src/ui/App.tsx
@@ -241,7 +241,9 @@ const App = ({ config, settings, startupWarnings = [] }: AppProps) => {
addItem(
{
type: MessageType.INFO,
- text: `⚡ Rate limiting detected. Automatically switching from ${currentModel} to ${fallbackModel} for faster responses for the remainder of this session.`,
+ text: `⚡ Slow response times detected. Automatically switching from ${currentModel} to ${fallbackModel} for faster responses for the remainder of this session.
+⚡ To avoid this you can utilize a Gemini API Key. See: https://goo.gle/gemini-cli-docs-auth#gemini-api-key
+⚡ You can switch authentication methods by typing /auth`,
},
Date.now(),
);