From 4469b7339fa3d087897fadff89bf9d238a7f8be8 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 7 May 2025 13:15:02 -0400 Subject: [PATCH] language_models: Update copy for Zed Pro subscription (#30152) This PR updates the copy around the Zed Pro description to be more accurate. Release Notes: - agent: Updated some copy about Zed Pro in the configuration view. --- crates/language_models/src/provider/cloud.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/language_models/src/provider/cloud.rs b/crates/language_models/src/provider/cloud.rs index 30c40f48d5..64547bfed5 100644 --- a/crates/language_models/src/provider/cloud.rs +++ b/crates/language_models/src/provider/cloud.rs @@ -1035,7 +1035,7 @@ impl Render for ConfigurationView { let is_pro = plan == Some(proto::Plan::ZedPro); let subscription_text = Label::new(if is_pro { - "You have full access to Zed's hosted LLMs, which include models from Anthropic, OpenAI, and Google. They come with faster speeds and higher limits through Zed Pro." + "You have access to Zed's hosted LLMs through your Zed Pro subscription." } else { "You have basic access to models from Anthropic through the Zed AI Free plan." });