diff --git a/gpt_action_json_schema.json b/gpt_action_json_schema.json index b67300c..b0ca947 100644 --- a/gpt_action_json_schema.json +++ b/gpt_action_json_schema.json @@ -295,11 +295,6 @@ "schemas": { "BashInteractionWithUUID": { "properties": { - "type": { - "type": "string", - "const": "BashInteraction", - "title": "Type" - }, "send_text": { "anyOf": [ { @@ -366,9 +361,9 @@ "title": "User Id" } }, + "additionalProperties": false, "type": "object", "required": [ - "type", "user_id" ], "title": "BashInteractionWithUUID" @@ -408,6 +403,7 @@ "title": "User Id" } }, + "additionalProperties": false, "type": "object", "required": [ "file_path", @@ -431,11 +427,6 @@ }, "InitializeWithUUID": { "properties": { - "type": { - "type": "string", - "const": "Initialize", - "title": "Type" - }, "any_workspace_path": { "type": "string", "title": "Any Workspace Path" @@ -453,9 +444,9 @@ "title": "User Id" } }, + "additionalProperties": false, "type": "object", "required": [ - "type", "any_workspace_path", "initial_files_to_read", "user_id" @@ -471,21 +462,16 @@ "type": "array", "title": "File Paths" }, - "type": { - "type": "string", - "const": "ReadFiles", - "title": "Type" - }, "user_id": { "type": "string", "format": "uuid", "title": "User Id" } }, + "additionalProperties": false, "type": "object", "required": [ "file_paths", - "type", "user_id" ], "title": "ReadFileWithUUID" @@ -503,6 +489,7 @@ "title": "User Id" } }, + "additionalProperties": false, "type": "object", "required": [ "should_reset", @@ -559,6 +546,7 @@ "title": "User Id" } }, + "additionalProperties": false, "type": "object", "required": [ "file_path", diff --git a/pyproject.toml b/pyproject.toml index 18fac4a..83939e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] authors = [{ name = "Aman Rusia", email = "gapypi@arcfu.com" }] name = "wcgw" -version = "2.6.1" +version = "2.6.2" description = "Shell and coding agent on claude and chatgpt" readme = "README.md" requires-python = ">=3.11, <3.13"