Skip to content

Commit 67d8fec

Browse files
committed
Minor typo fix for clarity
1 parent 9a873ca commit 67d8fec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/openai/script_generator_openai.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@
2727
# Create the ScriptCreatorGraph instance and run it
2828
# ************************************************
2929

30-
smart_scraper_graph = ScriptCreatorGraph(
31-
prompt="List me all the news with their description.",
30+
script_creator_graph = ScriptCreatorGraph(
31+
prompt="List me all the projects with their description.",
3232
# also accepts a string with the already downloaded HTML code
3333
source="https://perinim.github.io/projects",
3434
config=graph_config
3535
)
3636

37-
result = smart_scraper_graph.run()
37+
result = script_creator_graph.run()
3838
print(result)
3939

4040
# ************************************************
4141
# Get graph execution info
4242
# ************************************************
4343

44-
graph_exec_info = smart_scraper_graph.get_execution_info()
44+
graph_exec_info = script_creator_graph.get_execution_info()
4545
print(prettify_exec_info(graph_exec_info))

0 commit comments

Comments
 (0)