From 886e01d48cc3cada88509e9d668f432450b4f80e Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Fri, 9 Jan 2026 11:11:10 +0100 Subject: [PATCH] chore: make sure to tell the model the bash description is required --- internal/agent/tools/bash.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/agent/tools/bash.go b/internal/agent/tools/bash.go index c3f0bc8cd24a6c4ff7c6f775e357c90b3dc99802..ef800a733835df56a0e44d93e065b60b5411a039 100644 --- a/internal/agent/tools/bash.go +++ b/internal/agent/tools/bash.go @@ -20,7 +20,7 @@ import ( ) type BashParams struct { - Description string `json:"description" description:"A brief description of what the command does, try to keep it under 30 characters or so"` + Description string `json:"description" description:"A brief description of what the command does, try to keep it under 30 characters or so, this is required"` Command string `json:"command" description:"The command to execute"` WorkingDir string `json:"working_dir,omitempty" description:"The working directory to execute the command in (defaults to current directory)"` RunInBackground bool `json:"run_in_background,omitempty" description:"Set to true (boolean) to run this command in the background. Use job_output to read the output later."`