summaryrefslogtreecommitdiff
path: root/extension/schema/History.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'extension/schema/History.d.ts')
-rw-r--r--extension/schema/History.d.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/extension/schema/History.d.ts b/extension/schema/History.d.ts
index 90124f4a..b00a1505 100644
--- a/extension/schema/History.d.ts
+++ b/extension/schema/History.d.ts
@@ -9,6 +9,7 @@ export type History = History1;
export type Name = string;
export type Hide = boolean;
export type Description = string;
+export type ClassName = string;
export type SystemMessage = string;
export type Role = "assistant" | "user" | "system" | "function";
export type Content = string;
@@ -49,6 +50,7 @@ export interface Step {
name?: Name;
hide?: Hide;
description?: Description;
+ class_name?: ClassName;
system_message?: SystemMessage;
chat_context?: ChatContext;
manage_own_chat_context?: ManageOwnChatContext;