aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/chatbot/tools/ImageCreationTool.ts
diff options
context:
space:
mode:
authorsharkiecodes <lanyi_stroud@brown.edu>2025-07-03 01:01:25 -0400
committersharkiecodes <lanyi_stroud@brown.edu>2025-07-03 01:01:25 -0400
commitc32e8f3ab21088df872d836b7eb033f4eff8d73c (patch)
treefc381c1b3185706bd68783466d5b2b60222844d5 /src/client/views/nodes/chatbot/tools/ImageCreationTool.ts
parentfbfd9c8b55b8d3b81776fb260856645b3b495a3b (diff)
minor image edit
Diffstat (limited to 'src/client/views/nodes/chatbot/tools/ImageCreationTool.ts')
-rw-r--r--src/client/views/nodes/chatbot/tools/ImageCreationTool.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/nodes/chatbot/tools/ImageCreationTool.ts b/src/client/views/nodes/chatbot/tools/ImageCreationTool.ts
index 37907fd4f..c5b1e028b 100644
--- a/src/client/views/nodes/chatbot/tools/ImageCreationTool.ts
+++ b/src/client/views/nodes/chatbot/tools/ImageCreationTool.ts
@@ -26,6 +26,8 @@ const imageCreationToolInfo: ToolInfo<ImageCreationToolParamsType> = {
};
export class ImageCreationTool extends BaseTool<ImageCreationToolParamsType> {
+
+
private _createImage: (result: Upload.FileInformation & Upload.InspectionResults, options: DocumentOptions) => void;
constructor(createImage: (result: Upload.FileInformation & Upload.InspectionResults, options: DocumentOptions) => void) {
super(imageCreationToolInfo);