Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
refactor: add task getter options
  • Loading branch information
lxobr committed Mar 13, 2025
commit 853eb533cb8864128fb4fe55e6755af59afe0592
4 changes: 3 additions & 1 deletion cognee/eval_framework/eval_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ class EvalConfig(BaseSettings):
building_corpus_from_scratch: bool = True
number_of_samples_in_corpus: int = 1
benchmark: str = "Dummy" # Options: 'HotPotQA', 'Dummy', 'TwoWikiMultiHop'
task_getter_type: str = "Default" # Options: 'Default', 'CascadeGraph'
task_getter_type: str = (
"Default" # Options: 'Default', 'CascadeGraph', 'NoSummaries', 'JustChunks'
)

# Question answering params
answering_questions: bool = True
Expand Down
Loading