diff options
| author | A.J. Shulman <Shulman.aj@gmail.com> | 2024-10-10 11:39:19 -0400 |
|---|---|---|
| committer | A.J. Shulman <Shulman.aj@gmail.com> | 2024-10-10 11:39:19 -0400 |
| commit | d347fc59feefd91a796012892da57511787bb6d0 (patch) | |
| tree | 83b8950ade694a795a38fd2969d50978c1179b83 /src/client/views/nodes/chatbot/response_parsers/AnswerParser.ts | |
| parent | 75b98f184260567c0dabb54dd8ef22a8e2510512 (diff) | |
added new file header comments and fixed some error handling
Diffstat (limited to 'src/client/views/nodes/chatbot/response_parsers/AnswerParser.ts')
| -rw-r--r-- | src/client/views/nodes/chatbot/response_parsers/AnswerParser.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/client/views/nodes/chatbot/response_parsers/AnswerParser.ts b/src/client/views/nodes/chatbot/response_parsers/AnswerParser.ts index 1ac753790..ed78cc7cb 100644 --- a/src/client/views/nodes/chatbot/response_parsers/AnswerParser.ts +++ b/src/client/views/nodes/chatbot/response_parsers/AnswerParser.ts @@ -1,3 +1,11 @@ +/** + * @file AnswerParser.ts + * @description This file defines the AnswerParser class, which processes structured XML-like responses + * from the AI system, parsing grounded text, normal text, citations, follow-up questions, and loop summaries. + * The parser converts the XML response into an AssistantMessage format, extracting key information like + * citations and processing steps for further use in the assistant's workflow. + */ + import { v4 as uuid } from 'uuid'; import { ASSISTANT_ROLE, AssistantMessage, Citation, ProcessingInfo, TEXT_TYPE, getChunkType } from '../types/types'; |
