From 48eb4f5739b722a7cf7d16052637c32a55d87ba3 Mon Sep 17 00:00:00 2001 From: deep1401 <gandhi0869@gmail.com> Date: Tue, 25 Feb 2025 07:30:52 -0800 Subject: [PATCH] Changes to written instructions and icon text --- src/renderer/components/AIProvidersSettings.tsx | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/renderer/components/AIProvidersSettings.tsx b/src/renderer/components/AIProvidersSettings.tsx index f4ed4a3f..f52d351a 100644 --- a/src/renderer/components/AIProvidersSettings.tsx +++ b/src/renderer/components/AIProvidersSettings.tsx @@ -183,7 +183,7 @@ export default function AIProvidersSettings({ onBack }: AIProvidersSettingsProps color: 'success.600' }} > - {hoveredProvider === provider.name ? 'Disconnect' : 'Set up!'} + {hoveredProvider === provider.name ? 'Disconnect' : 'Connected'} </Box> ) : ( <Button variant="soft" onClick={() => handleConnectClick(provider)}> @@ -267,7 +267,7 @@ export default function AIProvidersSettings({ onBack }: AIProvidersSettingsProps target="_blank" rel="noreferrer" > - OpenAI API Keys + OpenAI API website </a> </li> <li>Log in to your OpenAI account.</li> @@ -281,8 +281,15 @@ export default function AIProvidersSettings({ onBack }: AIProvidersSettingsProps Steps to get a Anthropic API Key: </Typography> <ol> - <li>Visit your Claude provider’s website.</li> - <li>Log in/create an account.</li> + <li>Visit{' '} + <a + href="https://console.anthropic.com/settings/keys" + target="_blank" + rel="noreferrer" + > + Anthropic API Keys Console + </a></li> + <li>Log in/Create an account.</li> <li>Follow instructions to generate an API key.</li> </ol> </Box> -- GitLab