From 52421665759032bcfad80ce540efebe5f47310f6 Mon Sep 17 00:00:00 2001 From: Federico Aguzzi <62149513+f-aguzzi@users.noreply.github.com> Date: Mon, 2 Sep 2024 15:04:54 +0200 Subject: [PATCH] fix(SmartScraper): pass llm_model to ParseNode --- scrapegraphai/graphs/smart_scraper_graph.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scrapegraphai/graphs/smart_scraper_graph.py b/scrapegraphai/graphs/smart_scraper_graph.py index 0167103e..4a8416c8 100644 --- a/scrapegraphai/graphs/smart_scraper_graph.py +++ b/scrapegraphai/graphs/smart_scraper_graph.py @@ -74,6 +74,7 @@ class SmartScraperGraph(AbstractGraph): input="doc", output=["parsed_doc"], node_config={ + "llm_model": self.llm_model, "chunk_size": self.model_token } )