pub const GLOB_TOOL_SCHEMA: &str = r#"{
"type": "object",
"properties": {
"pattern": {
"type": "string",
"description": "The glob pattern to match files against"
},
"path": {
"type": "string",
"description": "The directory to search in. Defaults to current working directory."
},
"limit": {
"type": "integer",
"description": "Maximum number of results to return. Defaults to 1000."
},
"include_hidden": {
"type": "boolean",
"description": "Include hidden files (starting with dot). Defaults to false."
}
},
"required": ["pattern"]
}"#;Expand description
Glob tool JSON schema constant.