From f894d8cf9d7623839502bc8218b049e7b769da5a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Feb 2026 18:29:36 +0000 Subject: [PATCH] chore: update tool specifications --- lib/crewai-tools/tool.specs.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/crewai-tools/tool.specs.json b/lib/crewai-tools/tool.specs.json index ae6c227c4..357a21782 100644 --- a/lib/crewai-tools/tool.specs.json +++ b/lib/crewai-tools/tool.specs.json @@ -8409,6 +8409,12 @@ "description": "When False (default), searches are restricted to the current working directory. Set to True to allow searching any path on the filesystem.", "title": "Allow Unrestricted Paths", "type": "boolean" + }, + "max_file_size_bytes": { + "default": 10485760, + "description": "Maximum file size in bytes to search. Files larger than this are skipped. Defaults to 10 MB.", + "title": "Max File Size Bytes", + "type": "integer" } }, "title": "GrepTool", @@ -8427,7 +8433,9 @@ }, "context_lines": { "default": 0, - "description": "Number of lines to show before and after each match", + "description": "Number of lines to show before and after each match (0-10)", + "maximum": 10, + "minimum": 0, "title": "Context Lines", "type": "integer" },