diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-06 09:28:22 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-06 09:28:22 -0700 |
commit | f19345c652cfcf1bdf13d0a44a2f302e0cd1aa4c (patch) | |
tree | 4582964105452768a5346afcd764d26db6091504 /schema | |
parent | 98de69abbd221d0f6b7257a72b89b191356b10b7 (diff) | |
download | sncontinue-f19345c652cfcf1bdf13d0a44a2f302e0cd1aa4c.tar.gz sncontinue-f19345c652cfcf1bdf13d0a44a2f302e0cd1aa4c.tar.bz2 sncontinue-f19345c652cfcf1bdf13d0a44a2f302e0cd1aa4c.zip |
feat: :construction: Router and new history page
Diffstat (limited to 'schema')
-rw-r--r-- | schema/json/FullState.json | 5 | ||||
-rw-r--r-- | schema/json/SessionInfo.json | 29 |
2 files changed, 29 insertions, 5 deletions
diff --git a/schema/json/FullState.json b/schema/json/FullState.json index 7b6dfd6b..21db438a 100644 --- a/schema/json/FullState.json +++ b/schema/json/FullState.json @@ -264,10 +264,6 @@ "type": "string" } }, - "default_model": { - "title": "Default Model", - "type": "string" - }, "slash_commands": { "title": "Slash Commands", "type": "array", @@ -291,7 +287,6 @@ "history", "active", "user_input_queue", - "default_model", "slash_commands", "adding_highlighted_code", "selected_context_items" diff --git a/schema/json/SessionInfo.json b/schema/json/SessionInfo.json new file mode 100644 index 00000000..5857a724 --- /dev/null +++ b/schema/json/SessionInfo.json @@ -0,0 +1,29 @@ +{ + "title": "SessionInfo", + "$ref": "#/definitions/src__continuedev__core__main__SessionInfo", + "definitions": { + "src__continuedev__core__main__SessionInfo": { + "title": "SessionInfo", + "type": "object", + "properties": { + "session_id": { + "title": "Session Id", + "type": "string" + }, + "title": { + "title": "Title", + "type": "string" + }, + "date_created": { + "title": "Date Created", + "type": "string" + } + }, + "required": [ + "session_id", + "title", + "date_created" + ] + } + } +}
\ No newline at end of file |