add custom tool

This commit is contained in:
Henry
2023-06-21 18:31:53 +01:00
parent 8c880199cd
commit 70da39629c
28 changed files with 1346 additions and 43 deletions
+11
View File
@@ -24,6 +24,17 @@ export interface IChatMessage {
sourceDocuments: string
}
export interface ITool {
id: string
name: string
description: string
color: string
schema: string
func: string
updatedDate: Date
createdDate: Date
}
export interface IComponentNodes {
[key: string]: INode
}