Skip to content

Commit 69ff649

Browse files
committed
fix: fix the example variable name
1 parent 2512262 commit 69ff649

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scrapegraphai/graphs/smart_scraper_multi_concat_graph.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ class SmartScraperMultiConcatGraph(AbstractGraph):
3535
schema (Optional[BaseModel]): The schema for the graph output.
3636
3737
Example:
38-
>>> search_graph = MultipleSearchGraph(
38+
>>> smart_scraper_multi_concat_graph = SmartScraperMultiConcatGraph(
3939
... "What is Chioggia famous for?",
4040
... {"llm": {"model": "openai/gpt-3.5-turbo"}}
4141
... )
42-
>>> result = search_graph.run()
42+
>>> result = smart_scraper_multi_concat_graph.run()
4343
"""
4444

4545
def __init__(self, prompt: str, source: List[str],

0 commit comments

Comments
 (0)