@@ -523,7 +523,7 @@ impl zed::Extension for AnthropicProvider {
fn llm_provider_settings_markdown(&self, _provider_id: &str) -> Option<String> {
Some(
- "To use Anthropic, you need an API key. You can create one [here](https://console.anthropic.com/settings/keys).".to_string(),
+ "[Create an API key](https://console.anthropic.com/settings/keys) to use Anthropic as your LLM provider.".to_string(),
)
}
@@ -600,7 +600,7 @@ impl zed::Extension for GoogleAiProvider {
fn llm_provider_settings_markdown(&self, _provider_id: &str) -> Option<String> {
Some(
- "To use Google AI, you need an API key. You can create one [here](https://aistudio.google.com/apikey).".to_string(),
+ "[Create an API key](https://aistudio.google.com/apikey) to use Google AI as your LLM provider.".to_string(),
)
}
@@ -478,7 +478,7 @@ impl zed::Extension for OpenAiProvider {
fn llm_provider_settings_markdown(&self, _provider_id: &str) -> Option<String> {
Some(
- "To use OpenAI, you need an API key. You can create one [here](https://platform.openai.com/api-keys).".to_string(),
+ "[Create an API key](https://platform.openai.com/api-keys) to use OpenAI as your LLM provider.".to_string(),
)
}
@@ -568,7 +568,7 @@ impl zed::Extension for OpenRouterProvider {
fn llm_provider_settings_markdown(&self, _provider_id: &str) -> Option<String> {
Some(
- "To use OpenRouter, you need an API key. You can create one [here](https://openrouter.ai/keys).".to_string(),
+ "[Create an API key](https://openrouter.ai/keys) to use OpenRouter as your LLM provider.".to_string(),
)
}