From 399d3d267ecf7ad5425bec673d818b963eab8f91 Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Thu, 9 Apr 2026 10:42:21 -0300 Subject: [PATCH] docs: Update mentions to "assistant panel" (#53514) We don't use this terminology anymore; now it's "agent panel". Release Notes: - N/A --- crates/anthropic/src/anthropic.rs | 2 +- crates/deepseek/src/deepseek.rs | 2 +- crates/google_ai/src/google_ai.rs | 2 +- crates/mistral/src/mistral.rs | 2 +- crates/open_ai/src/open_ai.rs | 2 +- crates/settings_content/src/language_model.rs | 6 +++--- crates/vercel/src/vercel.rs | 2 +- crates/x_ai/src/x_ai.rs | 2 +- docs/src/migrate/intellij.md | 2 +- docs/src/migrate/pycharm.md | 2 +- docs/src/migrate/rustrover.md | 2 +- docs/src/migrate/webstorm.md | 2 +- docs/src/vim.md | 2 +- 13 files changed, 15 insertions(+), 15 deletions(-) diff --git a/crates/anthropic/src/anthropic.rs b/crates/anthropic/src/anthropic.rs index 48fa318d7c1d87e63725cef836baf9c945966206..ba79eb2315f96f52d7f695ae2e94c616763f94a0 100644 --- a/crates/anthropic/src/anthropic.rs +++ b/crates/anthropic/src/anthropic.rs @@ -109,7 +109,7 @@ pub enum Model { Custom { name: String, max_tokens: u64, - /// The name displayed in the UI, such as in the assistant panel model dropdown menu. + /// The name displayed in the UI, such as in the agent panel model dropdown menu. display_name: Option, /// Override this model with a different Anthropic model for tool calls. tool_override: Option, diff --git a/crates/deepseek/src/deepseek.rs b/crates/deepseek/src/deepseek.rs index 636258a5a132ce79cb5d15b1aaa25d6e4d3af643..19e1f6c2466512f4c4c96b6762885087202c65f3 100644 --- a/crates/deepseek/src/deepseek.rs +++ b/crates/deepseek/src/deepseek.rs @@ -56,7 +56,7 @@ pub enum Model { #[serde(rename = "custom")] Custom { name: String, - /// The name displayed in the UI, such as in the assistant panel model dropdown menu. + /// The name displayed in the UI, such as in the agent panel model dropdown menu. display_name: Option, max_tokens: u64, max_output_tokens: Option, diff --git a/crates/google_ai/src/google_ai.rs b/crates/google_ai/src/google_ai.rs index 5770c9a020b04bf280908993911b67ec3a5b980f..7917eb45c6292d05ede5267ba669a942348e575a 100644 --- a/crates/google_ai/src/google_ai.rs +++ b/crates/google_ai/src/google_ai.rs @@ -518,7 +518,7 @@ pub enum Model { #[serde(rename = "custom")] Custom { name: String, - /// The name displayed in the UI, such as in the assistant panel model dropdown menu. + /// The name displayed in the UI, such as in the agent panel model dropdown menu. display_name: Option, max_tokens: u64, #[serde(default)] diff --git a/crates/mistral/src/mistral.rs b/crates/mistral/src/mistral.rs index 0244f904468a5eb3e03b520a2687b31a1168f52b..e8227ca833eabcc712abf6f6b75e52e6f5b9583d 100644 --- a/crates/mistral/src/mistral.rs +++ b/crates/mistral/src/mistral.rs @@ -79,7 +79,7 @@ pub enum Model { #[serde(rename = "custom")] Custom { name: String, - /// The name displayed in the UI, such as in the assistant panel model dropdown menu. + /// The name displayed in the UI, such as in the agent panel model dropdown menu. display_name: Option, max_tokens: u64, max_output_tokens: Option, diff --git a/crates/open_ai/src/open_ai.rs b/crates/open_ai/src/open_ai.rs index 5423d9c5dcaa13589a8a7d658548b42fd467f67f..256b78f8a2ec921e842a846cbee75a4147745e00 100644 --- a/crates/open_ai/src/open_ai.rs +++ b/crates/open_ai/src/open_ai.rs @@ -98,7 +98,7 @@ pub enum Model { #[serde(rename = "custom")] Custom { name: String, - /// The name displayed in the UI, such as in the assistant panel model dropdown menu. + /// The name displayed in the UI, such as in the agent panel model dropdown menu. display_name: Option, max_tokens: u64, max_output_tokens: Option, diff --git a/crates/settings_content/src/language_model.rs b/crates/settings_content/src/language_model.rs index 00ecf42537459496102495c51628b54405968214..17beef9df25f7662caedd1380e867ad4aefbb7cc 100644 --- a/crates/settings_content/src/language_model.rs +++ b/crates/settings_content/src/language_model.rs @@ -39,7 +39,7 @@ pub struct AnthropicSettingsContent { pub struct AnthropicAvailableModel { /// The model's name in the Anthropic API. e.g. claude-3-5-sonnet-latest, claude-3-opus-20240229, etc pub name: String, - /// The model's name in Zed's UI, such as in the model selector dropdown menu in the assistant panel. + /// The model's name in Zed's UI, such as in the model selector dropdown menu in the agent panel. pub display_name: Option, /// The model's context window size. pub max_tokens: u64, @@ -109,7 +109,7 @@ pub struct OllamaSettingsContent { pub struct OllamaAvailableModel { /// The model name in the Ollama API (e.g. "llama3.2:latest") pub name: String, - /// The model's name in Zed's UI, such as in the model selector dropdown menu in the assistant panel. + /// The model's name in Zed's UI, such as in the model selector dropdown menu in the agent panel. pub display_name: Option, /// The Context Length parameter to the model (aka num_ctx or n_ctx) pub max_tokens: u64, @@ -388,7 +388,7 @@ pub struct ZedDotDevAvailableModel { pub provider: ZedDotDevAvailableProvider, /// The model's name in the provider's API. e.g. claude-3-5-sonnet-20240620 pub name: String, - /// The name displayed in the UI, such as in the assistant panel model dropdown menu. + /// The name displayed in the UI, such as in the agent panel model dropdown menu. pub display_name: Option, /// The size of the context window, indicating the maximum number of tokens the model can process. pub max_tokens: usize, diff --git a/crates/vercel/src/vercel.rs b/crates/vercel/src/vercel.rs index 8686fda53fbb1d19090f14ff944ec0641ac16c07..02ac291b9dd54a27aafa5af2a770131e87301184 100644 --- a/crates/vercel/src/vercel.rs +++ b/crates/vercel/src/vercel.rs @@ -13,7 +13,7 @@ pub enum Model { #[serde(rename = "custom")] Custom { name: String, - /// The name displayed in the UI, such as in the assistant panel model dropdown menu. + /// The name displayed in the UI, such as in the agent panel model dropdown menu. display_name: Option, max_tokens: u64, max_output_tokens: Option, diff --git a/crates/x_ai/src/x_ai.rs b/crates/x_ai/src/x_ai.rs index fd141a1723a28d235311d5d875bf4cc0388cab61..bc49a3e2b37d6ac83c66a2fba3af83ea7a451576 100644 --- a/crates/x_ai/src/x_ai.rs +++ b/crates/x_ai/src/x_ai.rs @@ -48,7 +48,7 @@ pub enum Model { #[serde(rename = "custom")] Custom { name: String, - /// The name displayed in the UI, such as in the assistant panel model dropdown menu. + /// The name displayed in the UI, such as in the agent panel model dropdown menu. display_name: Option, max_tokens: u64, max_output_tokens: Option, diff --git a/docs/src/migrate/intellij.md b/docs/src/migrate/intellij.md index adf0e20bef761385b66ad6bf55e387dd662088f4..74f7cf226c8620dbe122c59d952252b80c069362 100644 --- a/docs/src/migrate/intellij.md +++ b/docs/src/migrate/intellij.md @@ -119,7 +119,7 @@ If you chose the JetBrains keymap during onboarding, most of your shortcuts shou | Action | Shortcut | Notes | | ----------------- | -------------------------- | ------------------------------ | -| Toggle Right Dock | `Cmd + R` | Assistant panel, notifications | +| Toggle Right Dock | `Cmd + R` | Agent panel, notifications | | Split Panes | `Cmd + K`, then arrow keys | Create splits in any direction | ### How to Customize Keybindings diff --git a/docs/src/migrate/pycharm.md b/docs/src/migrate/pycharm.md index 0ce769b06bcc1363a4dde1d9ae3c138c0b4539f1..9f45135268e518476af00cc9ed8451d0f6a3e0ed 100644 --- a/docs/src/migrate/pycharm.md +++ b/docs/src/migrate/pycharm.md @@ -119,7 +119,7 @@ If you chose the JetBrains keymap during onboarding, most of your shortcuts shou | Action | Shortcut | Notes | | ----------------- | -------------------------- | ------------------------------ | -| Toggle Right Dock | `Cmd + R` | Assistant panel, notifications | +| Toggle Right Dock | `Cmd + R` | Agent panel, notifications | | Split Panes | `Cmd + K`, then arrow keys | Create splits in any direction | ### How to Customize Keybindings diff --git a/docs/src/migrate/rustrover.md b/docs/src/migrate/rustrover.md index 1e12202233ff1dc8f958b7acfc71a16723ed34ff..34cf03393e649f07202388675e02e9f8504c8d85 100644 --- a/docs/src/migrate/rustrover.md +++ b/docs/src/migrate/rustrover.md @@ -132,7 +132,7 @@ If you chose the JetBrains keymap during onboarding, most of your shortcuts shou | Action | Shortcut | Notes | | ----------------- | -------------------------- | ------------------------------ | -| Toggle Right Dock | `Cmd + R` | Assistant panel, notifications | +| Toggle Right Dock | `Cmd + R` | Agent panel, notifications | | Split Panes | `Cmd + K`, then arrow keys | Create splits in any direction | ### How to Customize Keybindings diff --git a/docs/src/migrate/webstorm.md b/docs/src/migrate/webstorm.md index 3708d8dec825caf23b831a4151ee60e95c04287d..e5313251ec12340c2a208c6a8b9cbeb116e85145 100644 --- a/docs/src/migrate/webstorm.md +++ b/docs/src/migrate/webstorm.md @@ -112,7 +112,7 @@ If you chose the JetBrains keymap during onboarding, most of your shortcuts shou | Action | Keybinding | Notes | | ----------------- | -------------------------------- | ------------------------------------------------------------- | -| Toggle Right Dock | {#kb workspace::ToggleRightDock} | Assistant panel, notifications | +| Toggle Right Dock | {#kb workspace::ToggleRightDock} | Agent panel, notifications | | Split Pane Right | {#kb pane::SplitRight} | Use other arrow keys to create splits in different directions | ### How to Customize Keybindings diff --git a/docs/src/vim.md b/docs/src/vim.md index 8e93edff081681a3e094c811e2d76822766ef67e..e60e084ac13cf935be49ab3b87304317df971d77 100644 --- a/docs/src/vim.md +++ b/docs/src/vim.md @@ -448,7 +448,7 @@ Here's a template with useful vim mode contexts to help you customize your vim m By default, you can navigate between the different files open in the editor with shortcuts like `ctrl+w` followed by one of `hjkl` to move to the left, down, up, or right, respectively. -But you cannot use the same shortcuts to move between all the editor docks (the terminal, project panel, assistant panel, ...). If you want to use the same shortcuts to navigate to the docks, you can add the following key bindings to your user keymap. +But you cannot use the same shortcuts to move between all the editor docks (the terminal, project panel, agent panel, ...). If you want to use the same shortcuts to navigate to the docks, you can add the following key bindings to your user keymap. ```json [keymap] {