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/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"
]
}
}
}
|