summaryrefslogtreecommitdiff
path: root/extension/schema/HistoryNode.d.ts
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
commit73b249132d551737e9e1dfa1b11dc40628c1cf07 (patch)
treebd54c0db2ebebd95bedcf90ff85fc6e85f3a0ea1 /extension/schema/HistoryNode.d.ts
parentd3db75ee7e2483f86ba5eb8856dd59aaadfae285 (diff)
parent5ef9950b3bff328a76b41852b3ea9de5b7ff7c8d (diff)
downloadsncontinue-73b249132d551737e9e1dfa1b11dc40628c1cf07.tar.gz
sncontinue-73b249132d551737e9e1dfa1b11dc40628c1cf07.tar.bz2
sncontinue-73b249132d551737e9e1dfa1b11dc40628c1cf07.zip
Merge branch 'main' of https://github.com/continuedev/continue
Diffstat (limited to 'extension/schema/HistoryNode.d.ts')
-rw-r--r--extension/schema/HistoryNode.d.ts31
1 files changed, 31 insertions, 0 deletions
diff --git a/extension/schema/HistoryNode.d.ts b/extension/schema/HistoryNode.d.ts
new file mode 100644
index 00000000..c1507270
--- /dev/null
+++ b/extension/schema/HistoryNode.d.ts
@@ -0,0 +1,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;
+}