diff options
Diffstat (limited to 'packages/core/src/tools/grep.ts')
| -rw-r--r-- | packages/core/src/tools/grep.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/core/src/tools/grep.ts b/packages/core/src/tools/grep.ts index f8ecdc9c..9d3d638a 100644 --- a/packages/core/src/tools/grep.ts +++ b/packages/core/src/tools/grep.ts @@ -13,7 +13,7 @@ import { globStream } from 'glob'; import { BaseDeclarativeTool, BaseToolInvocation, - Icon, + Kind, ToolInvocation, ToolResult, } from './tools.js'; @@ -543,7 +543,7 @@ export class GrepTool extends BaseDeclarativeTool<GrepToolParams, ToolResult> { GrepTool.Name, 'SearchText', 'Searches for a regular expression pattern within the content of files in a specified directory (or current working directory). Can filter files by a glob pattern. Returns the lines containing matches, along with their file paths and line numbers.', - Icon.Regex, + Kind.Search, { properties: { pattern: { |
