diff options
author | A.J. Shulman <Shulman.aj@gmail.com> | 2024-11-07 11:02:09 -0500 |
---|---|---|
committer | A.J. Shulman <Shulman.aj@gmail.com> | 2024-11-07 11:02:09 -0500 |
commit | ab6672a702986d9b22de4f2df7955a0297308cab (patch) | |
tree | 8f2be09c55fd4594a22256780bd1b20f96143adb /src/client/views/nodes/chatbot/tools/BaseTool.ts | |
parent | 5d4e19ad5961e42b90f7bfc920ea80da6edc5089 (diff) |
trying to add a new create any doc tool
Diffstat (limited to 'src/client/views/nodes/chatbot/tools/BaseTool.ts')
-rw-r--r-- | src/client/views/nodes/chatbot/tools/BaseTool.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/chatbot/tools/BaseTool.ts b/src/client/views/nodes/chatbot/tools/BaseTool.ts index 05ca83b26..8efba2d28 100644 --- a/src/client/views/nodes/chatbot/tools/BaseTool.ts +++ b/src/client/views/nodes/chatbot/tools/BaseTool.ts @@ -59,6 +59,7 @@ export abstract class BaseTool<P extends ReadonlyArray<Parameter>> { return { tool: this.name, description: this.description, + citationRules: this.citationRules, parameters: this.parameterRules.reduce( (acc, param) => { // Build an object for each parameter without the 'name' property, since it's used as the key |