diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-27 09:58:56 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-27 09:58:56 -0700 |
commit | 73c6827d02ff62313184e3745fd94c7591c98b61 (patch) | |
tree | 6d42f74c7c3740dd8d03b1cbe61ec8ac3439678b /schema | |
parent | 8db5b39170229ba93b83f526e7fd80056e461c6a (diff) | |
download | sncontinue-73c6827d02ff62313184e3745fd94c7591c98b61.tar.gz sncontinue-73c6827d02ff62313184e3745fd94c7591c98b61.tar.bz2 sncontinue-73c6827d02ff62313184e3745fd94c7591c98b61.zip |
fix: :bug: handle when vscode workspace not open
Diffstat (limited to 'schema')
-rw-r--r-- | schema/json/FullState.json | 50 |
1 files changed, 40 insertions, 10 deletions
diff --git a/schema/json/FullState.json b/schema/json/FullState.json index aea199fe..7b6dfd6b 100644 --- a/schema/json/FullState.json +++ b/schema/json/FullState.json @@ -15,7 +15,10 @@ "type": "string" } }, - "required": ["name", "arguments"] + "required": [ + "name", + "arguments" + ] }, "ChatMessage": { "title": "ChatMessage", @@ -23,7 +26,12 @@ "properties": { "role": { "title": "Role", - "enum": ["assistant", "user", "system", "function"], + "enum": [ + "assistant", + "user", + "system", + "function" + ], "type": "string" }, "content": { @@ -42,7 +50,10 @@ "$ref": "#/definitions/FunctionCall" } }, - "required": ["role", "summary"] + "required": [ + "role", + "summary" + ] }, "Step": { "title": "Step", @@ -119,7 +130,10 @@ } } }, - "required": ["step", "depth"] + "required": [ + "step", + "depth" + ] }, "History": { "title": "History", @@ -138,7 +152,10 @@ "type": "integer" } }, - "required": ["timeline", "current_index"] + "required": [ + "timeline", + "current_index" + ] }, "SlashCommandDescription": { "title": "SlashCommandDescription", @@ -153,7 +170,10 @@ "type": "string" } }, - "required": ["name", "description"] + "required": [ + "name", + "description" + ] }, "ContextItemId": { "title": "ContextItemId", @@ -169,7 +189,10 @@ "type": "string" } }, - "required": ["provider_title", "item_id"] + "required": [ + "provider_title", + "item_id" + ] }, "ContextItemDescription": { "title": "ContextItemDescription", @@ -188,7 +211,11 @@ "$ref": "#/definitions/ContextItemId" } }, - "required": ["name", "description", "id"] + "required": [ + "name", + "description", + "id" + ] }, "ContextItem": { "title": "ContextItem", @@ -213,7 +240,10 @@ "type": "boolean" } }, - "required": ["description", "content"] + "required": [ + "description", + "content" + ] }, "src__continuedev__core__main__FullState": { "title": "FullState", @@ -268,4 +298,4 @@ ] } } -} +}
\ No newline at end of file |