diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-08 10:45:57 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-08 10:45:57 -0700 |
commit | 19cbe2cebae8e2155b6b4375c6a96a3b25e87615 (patch) | |
tree | c7865148d2faa9a0d34327f37861791d60919162 /schema | |
parent | c70e364d5c362192f5583a8fedd7488a758b24dd (diff) | |
download | sncontinue-19cbe2cebae8e2155b6b4375c6a96a3b25e87615.tar.gz sncontinue-19cbe2cebae8e2155b6b4375c6a96a3b25e87615.tar.bz2 sncontinue-19cbe2cebae8e2155b6b4375c6a96a3b25e87615.zip |
fix: :arrow_up: upgrade openai python package
Diffstat (limited to 'schema')
-rw-r--r-- | schema/json/FullState.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/schema/json/FullState.json b/schema/json/FullState.json index 21db438a..b11ebfe1 100644 --- a/schema/json/FullState.json +++ b/schema/json/FullState.json @@ -245,6 +245,29 @@ "content" ] }, + "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" + ] + }, "src__continuedev__core__main__FullState": { "title": "FullState", "description": "A full state of the program, including the history", @@ -281,6 +304,9 @@ "items": { "$ref": "#/definitions/ContextItem" } + }, + "session_info": { + "$ref": "#/definitions/SessionInfo" } }, "required": [ |