summaryrefslogtreecommitdiff
path: root/schema/json/FullState.json
diff options
context:
space:
mode:
Diffstat (limited to 'schema/json/FullState.json')
-rw-r--r--schema/json/FullState.json24
1 files changed, 23 insertions, 1 deletions
diff --git a/schema/json/FullState.json b/schema/json/FullState.json
index 99d5128b..9f75930f 100644
--- a/schema/json/FullState.json
+++ b/schema/json/FullState.json
@@ -268,6 +268,24 @@
"date_created"
]
},
+ "ContinueConfig": {
+ "title": "ContinueConfig",
+ "type": "object",
+ "properties": {
+ "system_message": {
+ "title": "System Message",
+ "type": "string"
+ },
+ "temperature": {
+ "title": "Temperature",
+ "type": "number"
+ }
+ },
+ "required": [
+ "system_message",
+ "temperature"
+ ]
+ },
"src__continuedev__core__main__FullState": {
"title": "FullState",
"description": "A full state of the program, including the history",
@@ -308,6 +326,9 @@
"session_info": {
"$ref": "#/definitions/SessionInfo"
},
+ "config": {
+ "$ref": "#/definitions/ContinueConfig"
+ },
"saved_context_groups": {
"title": "Saved Context Groups",
"default": {},
@@ -326,7 +347,8 @@
"user_input_queue",
"slash_commands",
"adding_highlighted_code",
- "selected_context_items"
+ "selected_context_items",
+ "config"
]
}
}