summaryrefslogtreecommitdiff
path: root/schema/json/HistoryNode.json
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-05-27 23:34:25 -0400
committerNate Sesti <sestinj@gmail.com>2023-05-27 23:34:25 -0400
commit176a8958a7759e321d558c0a5478f7a11d9eb44d (patch)
tree402a8f9581eee04c0158e23a0a9b437cfe3eeaec /schema/json/HistoryNode.json
parent566d127be48dcb4e6fe4b6d1b98b6641ca0f8913 (diff)
parent5a14b71a3939f99c60f64b44683ed26c91677d0f (diff)
downloadsncontinue-176a8958a7759e321d558c0a5478f7a11d9eb44d.tar.gz
sncontinue-176a8958a7759e321d558c0a5478f7a11d9eb44d.tar.bz2
sncontinue-176a8958a7759e321d558c0a5478f7a11d9eb44d.zip
Merge branch 'main' of https://github.com/continuedev/continue
Diffstat (limited to 'schema/json/HistoryNode.json')
-rw-r--r--schema/json/HistoryNode.json51
1 files changed, 51 insertions, 0 deletions
diff --git a/schema/json/HistoryNode.json b/schema/json/HistoryNode.json
new file mode 100644
index 00000000..f58b8038
--- /dev/null
+++ b/schema/json/HistoryNode.json
@@ -0,0 +1,51 @@
+{
+ "title": "HistoryNode",
+ "$ref": "#/definitions/continuedev__src__continuedev__core__main__HistoryNode",
+ "definitions": {
+ "Step": {
+ "title": "Step",
+ "type": "object",
+ "properties": {
+ "name": {
+ "title": "Name",
+ "type": "string"
+ },
+ "hide": {
+ "title": "Hide",
+ "default": false,
+ "type": "boolean"
+ },
+ "system_message": {
+ "title": "System Message",
+ "type": "string"
+ }
+ }
+ },
+ "Observation": {
+ "title": "Observation",
+ "type": "object",
+ "properties": {}
+ },
+ "continuedev__src__continuedev__core__main__HistoryNode": {
+ "title": "HistoryNode",
+ "description": "A point in history, a list of which make up History",
+ "type": "object",
+ "properties": {
+ "step": {
+ "$ref": "#/definitions/Step"
+ },
+ "observation": {
+ "$ref": "#/definitions/Observation"
+ },
+ "depth": {
+ "title": "Depth",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "step",
+ "depth"
+ ]
+ }
+ }
+} \ No newline at end of file