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 ec9f8ff commit 65b8675Copy full SHA for 65b8675
scrapegraphai/graphs/smart_scraper_multi_concat_graph.py
@@ -60,18 +60,13 @@ def _create_graph(self) -> BaseGraph:
60
BaseGraph: A graph instance representing the web scraping and searching workflow.
61
"""
62
63
- smart_scraper_instance = SmartScraperGraph(
64
- prompt="",
65
- source="",
66
- config=self.copy_config,
67
- schema=self.copy_schema
68
- )
69
-
70
graph_iterator_node = GraphIteratorNode(
71
input="user_prompt & urls",
72
output=["results"],
73
node_config={
74
- "graph_instance": smart_scraper_instance,
+ "graph_instance": SmartScraperGraph,
+ "scraper_config": self.copy_config,
+ "scraper_schema": self.copy_schema,
75
}
76
)
77
0 commit comments