From 0788e615b5227c8604063eead5701f6498883d5d Mon Sep 17 00:00:00 2001 From: Nikhil-Doye Date: Fri, 17 Oct 2025 14:27:08 -0400 Subject: [PATCH] Update web scraping node output structure in workflowStore - Modified the output of the web scraping node to return the complete result data instead of just the content, enhancing the information available for further processing. --- src/store/workflowStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/workflowStore.ts b/src/store/workflowStore.ts index a94fa63..14bc893 100644 --- a/src/store/workflowStore.ts +++ b/src/store/workflowStore.ts @@ -499,7 +499,7 @@ const processWebScrapingNode = async ( if (result.success && result.data) { return { - output: result.data.content, + output: result.data, url, metadata: result.data.metadata, markdown: result.data.markdown,