""" depth_search_graph_opeani example """ from scrapegraphai.graphs import DepthSearchGraph graph_config = { "llm": { "client": "client_name", "model": "bedrock/anthropic.claude-3-sonnet-20240229-v1:0", "temperature": 0.0 }, "verbose": True, "headless": False, "depth": 2, "only_inside_links": False, } search_graph = DepthSearchGraph( prompt="List me all the projects with their description", source="https://perinim.github.io", config=graph_config ) result = search_graph.run() print(result)