(&self)
| 72 | } |
| 73 | |
| 74 | fn parameters(&self) -> serde_json::Value { |
| 75 | serde_json::json!({ |
| 76 | "type": "object", |
| 77 | "properties": { |
| 78 | "path": { |
| 79 | "type": "string", |
| 80 | "description": "The absolute path to the directory to list (must be absolute, not relative)" |
| 81 | }, |
| 82 | "ignore": { |
| 83 | "type": "array", |
| 84 | "items": {"type": "string"}, |
| 85 | "description": "List of glob patterns to ignore" |
| 86 | } |
| 87 | }, |
| 88 | "required": [] |
| 89 | }) |
| 90 | } |
| 91 | |
| 92 | async fn execute( |
| 93 | &self, |