tools: let hydrated tool calls have presentation options (#281634)

Editor side for https://github.com/microsoft/vscode/issues/281633
This commit is contained in:
Connor Peet
2025-12-05 16:29:50 -08:00
committed by Benjamin Pasero
parent 5cb50d5bda
commit fb875b2d60
3 changed files with 8 additions and 2 deletions

View File

@@ -105,6 +105,7 @@ declare module 'vscode' {
isComplete?: boolean;
toolSpecificData?: ChatTerminalToolInvocationData;
fromSubAgent?: boolean;
presentation?: 'hidden' | 'hiddenAfterComplete' | undefined;
constructor(toolName: string, toolCallId: string, isError?: boolean);
}