diff --git a/crates/agent/src/tool_compatibility.rs b/crates/agent/src/tool_compatibility.rs index 363bc305df21f94bb88045e8f2f399d8907d915e..141d87c96fb2867608fa1a5165beae611b7775e1 100644 --- a/crates/agent/src/tool_compatibility.rs +++ b/crates/agent/src/tool_compatibility.rs @@ -1,6 +1,6 @@ use std::sync::Arc; -use assistant_tool::{Tool, ToolWorkingSet, ToolWorkingSetEvent}; +use assistant_tool::{Tool, ToolSource, ToolWorkingSet, ToolWorkingSetEvent}; use collections::HashMap; use gpui::{App, Context, Entity, IntoElement, Render, Subscription, Window}; use language_model::{LanguageModel, LanguageModelToolSchemaFormat}; @@ -73,7 +73,12 @@ impl Render for IncompatibleToolsTooltip { .children( self.incompatible_tools .iter() - .map(|tool| Label::new(tool.name()).size(LabelSize::Small).buffer_font(cx)), + .map(|tool| h_flex().gap_4().child(Label::new(tool.name()).size(LabelSize::Small)).map(|parent| + match tool.source() { + ToolSource::Native => parent, + ToolSource::ContextServer { id } => parent.child(Label::new(id).size(LabelSize::Small).color(Color::Muted)), + } + )), ), ) .child(Label::new("What To Do Instead").size(LabelSize::Small))