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