From 69ff6495564a5c670b89c0f802ebb1602f0e7cfa Mon Sep 17 00:00:00 2001 From: roryhaung Date: Fri, 18 Oct 2024 01:36:29 +0800 Subject: [PATCH] fix: fix the example variable name --- scrapegraphai/graphs/smart_scraper_multi_concat_graph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scrapegraphai/graphs/smart_scraper_multi_concat_graph.py b/scrapegraphai/graphs/smart_scraper_multi_concat_graph.py index 312d6457..a13d8aa1 100644 --- a/scrapegraphai/graphs/smart_scraper_multi_concat_graph.py +++ b/scrapegraphai/graphs/smart_scraper_multi_concat_graph.py @@ -35,11 +35,11 @@ class SmartScraperMultiConcatGraph(AbstractGraph): schema (Optional[BaseModel]): The schema for the graph output. Example: - >>> search_graph = MultipleSearchGraph( + >>> smart_scraper_multi_concat_graph = SmartScraperMultiConcatGraph( ... "What is Chioggia famous for?", ... {"llm": {"model": "openai/gpt-3.5-turbo"}} ... ) - >>> result = search_graph.run() + >>> result = smart_scraper_multi_concat_graph.run() """ def __init__(self, prompt: str, source: List[str],