From 3c532478de96db8499454db6801546fd44ae5584 Mon Sep 17 00:00:00 2001 From: Andrew Pareles Date: Fri, 11 Apr 2025 14:31:10 -0700 Subject: [PATCH] prompt --- src/vs/workbench/contrib/void/common/prompt/prompts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/void/common/prompt/prompts.ts b/src/vs/workbench/contrib/void/common/prompt/prompts.ts index 100c01c0..d8462e54 100644 --- a/src/vs/workbench/contrib/void/common/prompt/prompts.ts +++ b/src/vs/workbench/contrib/void/common/prompt/prompts.ts @@ -162,7 +162,7 @@ Here's an example of a good description:\n${editToolDescriptionExample}` name: 'run_terminal_command', description: `Executes a terminal command.`, params: { - command: { description: 'The terminal command to execute.' }, + command: { description: 'The terminal command to execute. If working with tools like git that can paginate, you should pipe to cat so results are not truncated.' }, wait_for_completion: { description: `Optional. Default is true. Make this value false when you want a command to run without waiting for it to complete.` }, terminal_id: { description: 'Optional. The ID of the terminal instance that should execute the command (if not provided, defaults to the preferred terminal ID). The primary purpose of this is to let you open a new terminal for testing or background processes (e.g. running a dev server for the user in a separate terminal). Must be an integer >= 1.' }, },