mirror of
https://github.com/VinciGit00/Scrapegraph-ai.git
synced 2026-07-06 21:11:37 +08:00
fix: parse_html node have a bug
This commit is contained in:
parent
da451e5f16
commit
71f894eee3
@ -41,7 +41,7 @@ class ParseNode(BaseNode):
|
||||
False if node_config is None else node_config.get("verbose", False)
|
||||
)
|
||||
self.parse_html = (
|
||||
True if node_config is None else node_config.get("parse_html", True)
|
||||
True if node_config is None else node_config.get("parse_html", False)
|
||||
)
|
||||
|
||||
def execute(self, state: dict) -> dict:
|
||||
@ -94,4 +94,4 @@ class ParseNode(BaseNode):
|
||||
|
||||
state.update({self.output[0]: chunks})
|
||||
|
||||
return state
|
||||
return state
|
||||
|
||||
Loading…
Reference in New Issue
Block a user