Skip to content

Commit 6c6d052

Browse files
committed
fix
1 parent 15d0dfe commit 6c6d052

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/agentlab/benchmarks/gaia.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ class GaiaBenchmark(AbstractBenchmark):
106106
def model_post_init(self, __context: Any) -> None:
107107
if not self.dataset:
108108
self.dataset = datasets.load_dataset(
109-
"gaia-benchmark/GAIA", "2023_all", split=self.split, trust_remote_code=True
110-
)
109+
"gaia-benchmark/GAIA", "2023_all", trust_remote_code=True
110+
) # type: ignore
111111
self.env_args_list = []
112112
for i, task in enumerate(self.dataset[self.split]):
113113
if self.level != "all" and task["Level"] != self.level:

0 commit comments

Comments
 (0)