MCPcopy Create free account
hub / github.com/RUC-NLPIR/WebThinker / track_progress

Function track_progress

scripts/evaluate/evaluate.py:163–166  ·  view source on GitHub ↗
(task)

Source from the content-addressed store, hash-verified

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)

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected