Selaa lähdekoodia

chore: auto-update files

Charm 2 päivää sitten
vanhempi
sitoutus
f22ec5fcad
1 muutettua tiedostoa jossa 15 lisäystä ja 1 poistoa
  1. 15 1
      schema.json

+ 15 - 1
schema.json

@@ -690,6 +690,16 @@
         "expires_at"
       ]
     },
+    "ToolGrep": {
+      "properties": {
+        "timeout": {
+          "type": "integer",
+          "description": "Timeout for the grep tool call"
+        }
+      },
+      "additionalProperties": false,
+      "type": "object"
+    },
     "ToolLs": {
       "properties": {
         "max_depth": {
@@ -716,12 +726,16 @@
       "properties": {
         "ls": {
           "$ref": "#/$defs/ToolLs"
+        },
+        "grep": {
+          "$ref": "#/$defs/ToolGrep"
         }
       },
       "additionalProperties": false,
       "type": "object",
       "required": [
-        "ls"
+        "ls",
+        "grep"
       ]
     }
   }