summaryrefslogtreecommitdiff
path: root/schema/json/HistoryNode.json
blob: 87a8729f1cf7f673b962054b09f90c4474ffec6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  "title": "HistoryNode",
  "$ref": "#/definitions/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": {}
    },
    "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"
      ]
    }
  }
}