diff options
| author | Conrad Irwin <[email protected]> | 2025-07-17 16:25:23 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-17 22:25:23 +0000 |
| commit | 761ffc63388201373e5d16f36c2af09be71b5933 (patch) | |
| tree | 3012681d84b27034ed9ceaa5df2eae6aeb753779 /packages/core/src/tools/tool-registry.ts | |
| parent | 12401898f1f541a8a7919c94b4616fb0263dcce5 (diff) | |
Zed integration (#4266)
Co-authored-by: Agus Zubiaga <[email protected]>
Co-authored-by: Ben Brandt <[email protected]>
Co-authored-by: mkorwel <[email protected]>
Diffstat (limited to 'packages/core/src/tools/tool-registry.ts')
| -rw-r--r-- | packages/core/src/tools/tool-registry.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/core/src/tools/tool-registry.ts b/packages/core/src/tools/tool-registry.ts index d2303fc9..e6a4121d 100644 --- a/packages/core/src/tools/tool-registry.ts +++ b/packages/core/src/tools/tool-registry.ts @@ -5,7 +5,7 @@ */ import { FunctionDeclaration, Schema, Type } from '@google/genai'; -import { Tool, ToolResult, BaseTool } from './tools.js'; +import { Tool, ToolResult, BaseTool, Icon } from './tools.js'; import { Config } from '../config/config.js'; import { spawn } from 'node:child_process'; import { StringDecoder } from 'node:string_decoder'; @@ -44,6 +44,7 @@ Signal: Signal number or \`(none)\` if no signal was received. name, name, description, + Icon.Hammer, parameterSchema, false, // isOutputMarkdown false, // canUpdateOutput |
