We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c0b459 commit 8cf9685Copy full SHA for 8cf9685
scrapegraphai/nodes/parse_node.py
@@ -78,7 +78,6 @@ def execute(self, state: dict) -> dict:
78
self.logger.info(f"--- Executing {self.node_name} Node ---")
79
80
input_keys = self.get_input_keys(state)
81
-
82
input_data = [state[key] for key in input_keys]
83
docs_transformed = input_data[0]
84
source = input_data[1] if self.parse_urls else None
@@ -121,6 +120,9 @@ def execute(self, state: dict) -> dict:
121
120
)
122
123
state.update({self.output[0]: chunks})
+ state.update({"parsed_doc": chunks})
124
+ state.update({"content": chunks})
125
+
126
if self.parse_urls:
127
state.update({self.output[1]: link_urls})
128
state.update({self.output[2]: img_urls})
0 commit comments