assistant2: Update some text to use "agent" nomenclature (#27864)

This PR updates some text in the Agent Panel to use the "agent"
nomenclature.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-04-01 14:33:28 -04:00 committed by GitHub
parent 0934cb58c4
commit 133d3f052f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -768,7 +768,7 @@ impl AssistantPanel {
IconButton::new("new", IconName::Ellipsis) IconButton::new("new", IconName::Ellipsis)
.icon_size(IconSize::Small) .icon_size(IconSize::Small)
.style(ButtonStyle::Subtle), .style(ButtonStyle::Subtle),
Tooltip::text("Toggle Assistant Menu"), Tooltip::text("Toggle Agent Menu"),
) )
.anchor(Corner::TopRight) .anchor(Corner::TopRight)
.with_handle(self.assistant_dropdown_menu_handle.clone()) .with_handle(self.assistant_dropdown_menu_handle.clone())
@ -848,7 +848,7 @@ impl AssistantPanel {
.gap_1() .gap_1()
.child( .child(
h_flex().child( h_flex().child(
Headline::new("Welcome to the Assistant Panel") Headline::new("Welcome to the Agent Panel")
), ),
) )
.when(no_error, |parent| { .when(no_error, |parent| {
@ -935,7 +935,7 @@ impl AssistantPanel {
parent parent
.child( .child(
h_flex().child( h_flex().child(
Label::new("To start using the assistant, configure at least one LLM provider.") Label::new("To start using the agent, configure at least one LLM provider.")
.color(Color::Muted) .color(Color::Muted)
.mb_2p5() .mb_2p5()
) )
@ -1278,7 +1278,7 @@ impl AssistantPanelDelegate for ConcreteAssistantPanelDelegate {
cx: &mut Context<Workspace>, cx: &mut Context<Workspace>,
) -> Task<Result<()>> { ) -> Task<Result<()>> {
let Some(panel) = workspace.panel::<AssistantPanel>(cx) else { let Some(panel) = workspace.panel::<AssistantPanel>(cx) else {
return Task::ready(Err(anyhow!("Assistant panel not found"))); return Task::ready(Err(anyhow!("Agent panel not found")));
}; };
panel.update(cx, |panel, cx| { panel.update(cx, |panel, cx| {