Skip to content

Commit

Permalink
initial commit for grouped tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Anindyadeep committed Dec 13, 2023
1 parent 9522c45 commit 44ddb24
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion deepeval/llm_benchmarks/harness/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,8 @@ def load_task(cls, tasks: Union[List[str], str]) -> List[Any]:
raise ValueError(
f"Tasks {missing} were not found. Try `lm-eval --tasks list` for list of available tasks."
)
return task_names
return task_names

@classmethod
def group_tasks(task_names: Union[str, List[str]]) -> None:
raise NotImplementedError()

0 comments on commit 44ddb24

Please sign in to comment.