diff options
Diffstat (limited to 'src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx')
-rw-r--r-- | src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx b/src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx index 867e78860..00077d68d 100644 --- a/src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx +++ b/src/client/views/nodes/chatbot/chatboxcomponents/ChatBox.tsx @@ -970,14 +970,6 @@ export class ChatBox extends ViewBoxAnnotatableComponent<FieldViewProps>() { componentWillUnmount() { this.removeScrollListener(); } - /** - * Getter that retrieves document IDs of linked documents that have PDF_chunker–parsed content. - */ - @computed - get docIds(): string[] { - // Use the document manager to get all document IDs - return Array.from(this.docManager.listDocs); - } /** * Getter that retrieves all linked CSV files for analysis. @@ -1004,11 +996,6 @@ export class ChatBox extends ViewBoxAnnotatableComponent<FieldViewProps>() { // Other helper methods for retrieving document data and processing - retrieveSummaries = (): string => { - console.log(this.docManager.listDocs); - return JSON.stringify(this.docManager.listDocs); - }; - retrieveCSVData = () => { return this.linkedCSVs; }; |