File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 27
27
# Create the ScriptCreatorGraph instance and run it
28
28
# ************************************************
29
29
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." ,
32
32
# also accepts a string with the already downloaded HTML code
33
33
source = "https://perinim.github.io/projects" ,
34
34
config = graph_config
35
35
)
36
36
37
- result = smart_scraper_graph .run ()
37
+ result = script_creator_graph .run ()
38
38
print (result )
39
39
40
40
# ************************************************
41
41
# Get graph execution info
42
42
# ************************************************
43
43
44
- graph_exec_info = smart_scraper_graph .get_execution_info ()
44
+ graph_exec_info = script_creator_graph .get_execution_info ()
45
45
print (prettify_exec_info (graph_exec_info ))
You can’t perform that action at this time.
0 commit comments