Skip to content

Commit

Permalink
fix: fix the example variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
shenghongtw committed Oct 17, 2024
1 parent 2512262 commit 69ff649
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scrapegraphai/graphs/smart_scraper_multi_concat_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -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],
Expand Down

0 comments on commit 69ff649

Please sign in to comment.