diff options
| author | Olcan <[email protected]> | 2025-05-30 13:59:05 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-30 13:59:05 -0700 |
| commit | 1a5fd2ccb2c96931921dfddbc64639ddf946980c (patch) | |
| tree | 1a60d3a242b79abf26502478cb43906de6ba9cdd /packages/server/src/tools/shell.ts | |
| parent | 0869fd168fddc9e8d86739b80d86373a1caf663a (diff) | |
add flags for markdown rendering and live updating to Tool to avoid special-casing shell tool by name, and open door for other tools to specify their rendering/updating (#629)
Diffstat (limited to 'packages/server/src/tools/shell.ts')
| -rw-r--r-- | packages/server/src/tools/shell.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/server/src/tools/shell.ts b/packages/server/src/tools/shell.ts index 388c1543..4efc3500 100644 --- a/packages/server/src/tools/shell.ts +++ b/packages/server/src/tools/shell.ts @@ -42,6 +42,8 @@ export class ShellTool extends BaseTool<ShellToolParams, ToolResult> { toolDisplayName, toolDescription, toolParameterSchema, + false, // output is not markdown + true, // output can be updated ); } |
