aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/ChatBox/ChatBot.ts
diff options
context:
space:
mode:
authorA.J. Shulman <Shulman.aj@gmail.com>2024-07-10 16:35:11 -0400
committerA.J. Shulman <Shulman.aj@gmail.com>2024-07-10 16:35:11 -0400
commitaa8b1248408846d6a158f8df1c76fa3015ce3aac (patch)
treec0bf0d85b3f09a59e001bdc93963fc413222f942 /src/client/views/nodes/ChatBox/ChatBot.ts
parentcab0311e2fd9a6379628c000d11ddcd805e01f64 (diff)
Fixing bugs and attempting to get it to work
Diffstat (limited to 'src/client/views/nodes/ChatBox/ChatBot.ts')
-rw-r--r--src/client/views/nodes/ChatBox/ChatBot.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/nodes/ChatBox/ChatBot.ts b/src/client/views/nodes/ChatBox/ChatBot.ts
index 31b4ea9e3..8b5e0982c 100644
--- a/src/client/views/nodes/ChatBox/ChatBot.ts
+++ b/src/client/views/nodes/ChatBox/ChatBot.ts
@@ -1,5 +1,7 @@
import { Agent } from './Agent';
import { Vectorstore } from './vectorstore/VectorstoreUpload';
+import dotenv from 'dotenv';
+dotenv.config();
export class ChatBot {
private agent: Agent;