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
This commit is contained in:
Ed Zynda
2026-04-21 11:28:32 +03:00
parent 50f586ec8f
commit 9e5806ade8
+2 -2
View File
@@ -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"},