Skip to content

Commit 72859d5

Browse files
committed
fixed variable name
1 parent 12a5919 commit 72859d5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,6 @@ venv/
2828
*.sqlite
2929
*.google-cookie
3030
examples/graph_examples/ScrapeGraphAI_generated_graph
31+
examples/*.csv
32+
examples/*.json
3133
main.py

examples/search_graph_example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
}
2121

2222
# Create the SmartScraperGraph instance
23-
smart_scraper_graph = SearchGraph(
23+
search_graph = SearchGraph(
2424
prompt="List me all the regions of Italy.",
2525
config=graph_config
2626
)
2727

28-
result = smart_scraper_graph.run()
28+
result = search_graph.run()
2929
print(result)
3030

3131
# Save to json and csv

0 commit comments

Comments
 (0)