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 23b923c commit 09256f7Copy full SHA for 09256f7
examples/local_models/smart_scraper_ollama.py
@@ -28,8 +28,8 @@
28
# ************************************************
29
30
smart_scraper_graph = SmartScraperGraph(
31
- prompt="List me all the titles",
32
- source="https://perinim.github.io/projects",
+ prompt="List me all the titles of the website",
+ source="https://sport.sky.it/nba?gr=www",
33
config=graph_config
34
)
35
scrapegraphai/nodes/parse_node.py
@@ -41,7 +41,7 @@ def __init__(
41
False if node_config is None else node_config.get("verbose", False)
42
43
self.parse_html = (
44
- True if node_config is None else node_config.get("parse_html", False)
+ True if node_config is None else node_config.get("parse_html", True)
45
46
47
def execute(self, state: dict) -> dict:
0 commit comments