Skip to content

Commit e08ac71

Browse files
committed
refactoring of the examples folder
1 parent c022030 commit e08ac71

11 files changed

+8
-119
lines changed

examples/direct use/Readme.md

-2
This file was deleted.

examples/direct use/custom_graph.py

-54
This file was deleted.

examples/direct use/graph_builder.py

-23
This file was deleted.

examples/direct use/smart_scraper_graph.py

-17
This file was deleted.

examples/direct use/speech_summary_graph.py

-20
This file was deleted.
File renamed without changes.

examples/graph_evaluation_example.py examples/graph_examples/graph_evaluation_example.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
"""
2+
Module for evaluating the graph
3+
"""
14
import os
2-
from scrapegraphai.evaluetor import TrulensEvaluator
35
from dotenv import load_dotenv
6+
from scrapegraphai.evaluetor import TrulensEvaluator
47

58
load_dotenv()
69

@@ -13,8 +16,10 @@
1316
}
1417

1518
list_of_inputs = [
16-
("List me all the titles and project descriptions", "https://perinim.github.io/projects/", llm_config),
17-
("Who is the author of the project?", "https://perinim.github.io/projects/", llm_config),
19+
("List me all the titles and project descriptions",
20+
"https://perinim.github.io/projects/", llm_config),
21+
("Who is the author of the project?",
22+
"https://perinim.github.io/projects/", llm_config),
1823
("What is the project about?", "https://perinim.github.io/projects/", llm_config)
1924
]
2025

0 commit comments

Comments
 (0)