blob: c15072709fbbf71a4336d10070e1c210e16c728b (
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
|
/* eslint-disable */
/**
* This file was automatically generated by json-schema-to-typescript.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run json-schema-to-typescript to regenerate this file.
*/
export type HistoryNode = HistoryNode1;
export type Name = string;
export type Hide = boolean;
export type SystemMessage = string;
export type Depth = number;
/**
* A point in history, a list of which make up History
*/
export interface HistoryNode1 {
step: Step;
observation?: Observation;
depth: Depth;
[k: string]: unknown;
}
export interface Step {
name?: Name;
hide?: Hide;
system_message?: SystemMessage;
[k: string]: unknown;
}
export interface Observation {
[k: string]: unknown;
}
|