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

Function track_progress

scripts/run_web_thinker_report.py:1059–1062  ·  view source on GitHub ↗
(task)

Source from the content-addressed store, hash-verified

1057 # Run all sequences concurrently with progress bar
1058 with tqdm(total=len(tasks)) as pbar:
1059 async def track_progress(task):
1060 result = await task
1061 pbar.update(1)
1062 return result
1063
1064 tracked_tasks = [track_progress(task) for task in tasks]
1065 completed_sequences = await asyncio.gather(*tracked_tasks)

Callers 1

main_asyncFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected