aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/ChatBox/Agent.ts
diff options
context:
space:
mode:
authorA.J. Shulman <Shulman.aj@gmail.com>2024-09-07 11:48:36 -0400
committerA.J. Shulman <Shulman.aj@gmail.com>2024-09-07 11:48:36 -0400
commit210f8f5f1cd19e9416a12524cce119b273334fd3 (patch)
tree02268cd69abc868c428f42e8d57812a4f29be1a7 /src/client/views/nodes/ChatBox/Agent.ts
parent0b3c2ed595b85391e9833a3b7710d2169439a582 (diff)
reorganized parsers, added comments to vectorstore, and added citation popup for text citations
Diffstat (limited to 'src/client/views/nodes/ChatBox/Agent.ts')
-rw-r--r--src/client/views/nodes/ChatBox/Agent.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/ChatBox/Agent.ts b/src/client/views/nodes/ChatBox/Agent.ts
index eaa17d283..9eb069c78 100644
--- a/src/client/views/nodes/ChatBox/Agent.ts
+++ b/src/client/views/nodes/ChatBox/Agent.ts
@@ -13,8 +13,8 @@ import { SearchTool } from './tools/SearchTool';
import { NoTool } from './tools/NoTool';
import { on } from 'events';
import { v4 as uuidv4 } from 'uuid';
-import { AnswerParser } from './AnswerParser';
-import { StreamedAnswerParser } from './StreamedAnswerParser';
+import { AnswerParser } from './response_parsers/AnswerParser';
+import { StreamedAnswerParser } from './response_parsers/StreamedAnswerParser';
import { CreateCSVTool } from './tools/CreateCSVTool';
dotenv.config();