(task)
| 161 | |
| 162 | with tqdm(total=len(tasks), desc="LLM Evaluation") as pbar: |
| 163 | async def track_progress(task): |
| 164 | result = await task |
| 165 | pbar.update(1) |
| 166 | return result |
| 167 | |
| 168 | tracked_tasks = [track_progress(task) for task in tasks] |
| 169 | results = await asyncio.gather(*tracked_tasks) |
no outgoing calls
no test coverage detected