We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b64fa4f commit 3b619f8Copy full SHA for 3b619f8
docs/site/components/geistdocs/message-metadata.tsx
@@ -104,10 +104,16 @@ export const MessageMetadata = ({
104
}
105
106
if (tool && inProgress) {
107
+ // Show user-friendly message for search_docs tool
108
+ const isSearching = tool.type === "tool-search_docs";
109
return (
110
<div className="flex items-center gap-2">
111
<Spinner />
- <Shimmer>{tool.type}</Shimmer>
112
+ <Shimmer>
113
+ {isSearching
114
+ ? "Searching sources..."
115
+ : tool.type.replace("tool-", "")}
116
+ </Shimmer>
117
</div>
118
);
119
0 commit comments