Skip to content

Commit 09256f7

Browse files
committed
fix: parse node
1 parent 23b923c commit 09256f7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/local_models/smart_scraper_ollama.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
# ************************************************
2929

3030
smart_scraper_graph = SmartScraperGraph(
31-
prompt="List me all the titles",
32-
source="https://perinim.github.io/projects",
31+
prompt="List me all the titles of the website",
32+
source="https://sport.sky.it/nba?gr=www",
3333
config=graph_config
3434
)
3535

scrapegraphai/nodes/parse_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __init__(
4141
False if node_config is None else node_config.get("verbose", False)
4242
)
4343
self.parse_html = (
44-
True if node_config is None else node_config.get("parse_html", False)
44+
True if node_config is None else node_config.get("parse_html", True)
4545
)
4646

4747
def execute(self, state: dict) -> dict:

0 commit comments

Comments
 (0)