move r1 configs into r1 yaml/r1 subfolder

This commit is contained in:
Andreas Koepf 2025-02-25 16:24:30 +01:00
parent e7ae82a831
commit 878f9bbc76
7 changed files with 6 additions and 7 deletions

2
eval/eval.py Normal file → Executable file
View file

@ -1,3 +1,4 @@
#!/usr/bin/env python
import argparse
import asyncio
import json
@ -112,7 +113,6 @@ class OpenRouterEvaluator:
async def evaluate_datasets(self) -> list[dict[str, Any]]:
"""Main async evaluation entry point."""
all_results = []
async with aiohttp.ClientSession(headers=self.headers) as session:
return await asyncio.gather(*(self.evaluate_dataset(session, name) for name in self.config.datasets))