From 9e5806ade898a2bd9eeb4f06ebe9b48f53df0abd Mon Sep 17 00:00:00 2001 From: Ed Zynda Date: Tue, 21 Apr 2026 11:28:32 +0300 Subject: [PATCH] fix(subagent): remove biased model example from tool schema - Remove vendor-specific model example that could bias LLM selection - Add minimum recommended timeout guidance to subagent schema --- internal/core/subagent.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/core/subagent.go b/internal/core/subagent.go index 4f96ec2b..76ef8bc7 100644 --- a/internal/core/subagent.go +++ b/internal/core/subagent.go @@ -86,7 +86,7 @@ Example use cases: }, "model": map[string]any{ "type": "string", - "description": "Optional model override (e.g. 'anthropic/claude-haiku-3-5-20241022' for faster/cheaper tasks)", + "description": "Optional model override. Empty string uses the current model.", }, "system_prompt": map[string]any{ "type": "string", @@ -94,7 +94,7 @@ Example use cases: }, "timeout_seconds": map[string]any{ "type": "number", - "description": "Maximum execution time in seconds (default: 300, max: 1800)", + "description": "Maximum execution time in seconds (default: 300, max: 1800, minimum recommended: 240)", }, }, Required: []string{"task"},