├── LICENSE.txt ├── assets ├── illus.jpg └── perfm-bar.svg ├── config.py ├── convert.py ├── data ├── URLs │ └── urls.json └── WebAggregatorQA │ ├── test │ ├── files │ │ ├── .DS_Store │ │ ├── 114039_461.png │ │ ├── 12341298126358.png │ │ ├── 12cd74ecf93309bddb0512b456039c3a.png │ │ ├── 14556897.jpg │ │ ├── 1a4e4c6bd88291e66250f2183251e88c.png │ │ ├── 2ca2df15ecc4e649ce72e2901f0ee2c7.png │ │ ├── 44146f88d45d9556fca43aaa72993a9a22349f82-1920x1080.avif │ │ ├── 6e340e234a41dcc798d07061e3cceb1b.png │ │ ├── 6fca43aaa72993a9a22349f82-1920x1080.jpg │ │ ├── 725f301ae12944404b4e46d3b86ee5f8.png │ │ ├── 745218b3888204868894faec4e8b338e.png │ │ ├── 948a0cb2870f63f93e8316ed04a06fa0.png │ │ ├── 960x0.jpg │ │ ├── A_012.JPG │ │ ├── A_013.jpg │ │ ├── A_014.jpg │ │ ├── EqAxmbSL.jpg │ │ ├── Photograph_of_animal.jpg │ │ ├── aa18972bd40735fa5c275d5a9c510fb30e240879.jpg │ │ ├── dd19f83cae2e9198f7bff0df85cfcea7.png │ │ ├── e9d01e8355382e81c5df385a8f42d763.png │ │ ├── f2ae3561fde457bd499534570e577f9a.png │ │ ├── f3b64b57b6a0118d1b5b74ff4f648e75.png │ │ ├── maze.jpg │ │ ├── sudoku.png │ │ └── sudoku_ans.png │ └── webaggregatorqa.json │ └── train-samples │ └── QA-samples.json ├── eval.py ├── model_list.py ├── output ├── 0shot │ └── gaia-text │ │ └── gaia-text-gpt-4.1.jsonl └── traj_sampling │ └── webresearchqa-train │ └── webresearchqa-train-gpt-4.1.jsonl ├── prompt.py ├── readme.md ├── requirements.txt ├── run ├── QA_building.sh ├── test.sh └── traj_sampling.sh ├── run_agent.py ├── scripts ├── audio_qa.py ├── cookies.py ├── mdconvert.py ├── reformulator.py ├── run_agents.py └── text_inspector_tool.py ├── smolagents ├── __init__.py ├── _function_type_hints_utils.py ├── agent_types.py ├── agents.py ├── cli.py ├── default_tools.py ├── gradio_ui.py ├── local_python_executor.py ├── memory.py ├── models.py ├── monitoring.py ├── prompts │ ├── code_agent.yaml │ └── toolcalling_agent.yaml ├── remote_executors.py ├── tool_validation.py ├── tools.py ├── utils.py └── vision_web_browser.py ├── traj ├── anchor-urls-gpt-4.1 │ └── gpt-4.1 │ │ └── -7312820999761576042 │ │ ├── -1.json │ │ ├── 1.json │ │ ├── 2.json │ │ ├── 3.json │ │ └── 4.json ├── gaia-text-gpt-4.1 │ └── gpt-4.1 │ │ └── 17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc │ │ ├── -1.json │ │ ├── 1.json │ │ ├── 2.json │ │ ├── 3.json │ │ ├── 4.json │ │ ├── 5.json │ │ ├── 6.json │ │ └── 7.json └── webresearchqa-train-gpt-4.1 │ └── gpt-4.1 │ └── 7398285851856723610 │ ├── -1.json │ ├── 1.json │ ├── 10.json │ ├── 11.json │ ├── 2.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ ├── 6.json │ ├── 7.json │ ├── 8.json │ └── 9.json ├── utils.py └── web_tools.py /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /assets/illus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/assets/illus.jpg -------------------------------------------------------------------------------- /assets/perfm-bar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/assets/perfm-bar.svg -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/config.py -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/convert.py -------------------------------------------------------------------------------- /data/URLs/urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/URLs/urls.json -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/.DS_Store -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/114039_461.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/114039_461.png -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/12341298126358.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/12341298126358.png -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/12cd74ecf93309bddb0512b456039c3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/12cd74ecf93309bddb0512b456039c3a.png -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/14556897.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/14556897.jpg -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/1a4e4c6bd88291e66250f2183251e88c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/1a4e4c6bd88291e66250f2183251e88c.png -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/2ca2df15ecc4e649ce72e2901f0ee2c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/2ca2df15ecc4e649ce72e2901f0ee2c7.png -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/44146f88d45d9556fca43aaa72993a9a22349f82-1920x1080.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/44146f88d45d9556fca43aaa72993a9a22349f82-1920x1080.avif -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/6e340e234a41dcc798d07061e3cceb1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/6e340e234a41dcc798d07061e3cceb1b.png -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/6fca43aaa72993a9a22349f82-1920x1080.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/6fca43aaa72993a9a22349f82-1920x1080.jpg -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/725f301ae12944404b4e46d3b86ee5f8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/725f301ae12944404b4e46d3b86ee5f8.png -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/745218b3888204868894faec4e8b338e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/745218b3888204868894faec4e8b338e.png -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/948a0cb2870f63f93e8316ed04a06fa0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/948a0cb2870f63f93e8316ed04a06fa0.png -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/960x0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/960x0.jpg -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/A_012.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/A_012.JPG -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/A_013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/A_013.jpg -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/A_014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/A_014.jpg -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/EqAxmbSL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/EqAxmbSL.jpg -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/Photograph_of_animal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/Photograph_of_animal.jpg -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/aa18972bd40735fa5c275d5a9c510fb30e240879.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/aa18972bd40735fa5c275d5a9c510fb30e240879.jpg -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/dd19f83cae2e9198f7bff0df85cfcea7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/dd19f83cae2e9198f7bff0df85cfcea7.png -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/e9d01e8355382e81c5df385a8f42d763.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/e9d01e8355382e81c5df385a8f42d763.png -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/f2ae3561fde457bd499534570e577f9a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/f2ae3561fde457bd499534570e577f9a.png -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/f3b64b57b6a0118d1b5b74ff4f648e75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/f3b64b57b6a0118d1b5b74ff4f648e75.png -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/maze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/maze.jpg -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/sudoku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/sudoku.png -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/files/sudoku_ans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/files/sudoku_ans.png -------------------------------------------------------------------------------- /data/WebAggregatorQA/test/webaggregatorqa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/test/webaggregatorqa.json -------------------------------------------------------------------------------- /data/WebAggregatorQA/train-samples/QA-samples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/data/WebAggregatorQA/train-samples/QA-samples.json -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/eval.py -------------------------------------------------------------------------------- /model_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/model_list.py -------------------------------------------------------------------------------- /output/0shot/gaia-text/gaia-text-gpt-4.1.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/output/0shot/gaia-text/gaia-text-gpt-4.1.jsonl -------------------------------------------------------------------------------- /output/traj_sampling/webresearchqa-train/webresearchqa-train-gpt-4.1.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/output/traj_sampling/webresearchqa-train/webresearchqa-train-gpt-4.1.jsonl -------------------------------------------------------------------------------- /prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/prompt.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/requirements.txt -------------------------------------------------------------------------------- /run/QA_building.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/run/QA_building.sh -------------------------------------------------------------------------------- /run/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/run/test.sh -------------------------------------------------------------------------------- /run/traj_sampling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/run/traj_sampling.sh -------------------------------------------------------------------------------- /run_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/run_agent.py -------------------------------------------------------------------------------- /scripts/audio_qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/scripts/audio_qa.py -------------------------------------------------------------------------------- /scripts/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/scripts/cookies.py -------------------------------------------------------------------------------- /scripts/mdconvert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/scripts/mdconvert.py -------------------------------------------------------------------------------- /scripts/reformulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/scripts/reformulator.py -------------------------------------------------------------------------------- /scripts/run_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/scripts/run_agents.py -------------------------------------------------------------------------------- /scripts/text_inspector_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/scripts/text_inspector_tool.py -------------------------------------------------------------------------------- /smolagents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/__init__.py -------------------------------------------------------------------------------- /smolagents/_function_type_hints_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/_function_type_hints_utils.py -------------------------------------------------------------------------------- /smolagents/agent_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/agent_types.py -------------------------------------------------------------------------------- /smolagents/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/agents.py -------------------------------------------------------------------------------- /smolagents/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/cli.py -------------------------------------------------------------------------------- /smolagents/default_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/default_tools.py -------------------------------------------------------------------------------- /smolagents/gradio_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/gradio_ui.py -------------------------------------------------------------------------------- /smolagents/local_python_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/local_python_executor.py -------------------------------------------------------------------------------- /smolagents/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/memory.py -------------------------------------------------------------------------------- /smolagents/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/models.py -------------------------------------------------------------------------------- /smolagents/monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/monitoring.py -------------------------------------------------------------------------------- /smolagents/prompts/code_agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/prompts/code_agent.yaml -------------------------------------------------------------------------------- /smolagents/prompts/toolcalling_agent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/prompts/toolcalling_agent.yaml -------------------------------------------------------------------------------- /smolagents/remote_executors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/remote_executors.py -------------------------------------------------------------------------------- /smolagents/tool_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/tool_validation.py -------------------------------------------------------------------------------- /smolagents/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/tools.py -------------------------------------------------------------------------------- /smolagents/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/utils.py -------------------------------------------------------------------------------- /smolagents/vision_web_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/smolagents/vision_web_browser.py -------------------------------------------------------------------------------- /traj/anchor-urls-gpt-4.1/gpt-4.1/-7312820999761576042/-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/anchor-urls-gpt-4.1/gpt-4.1/-7312820999761576042/-1.json -------------------------------------------------------------------------------- /traj/anchor-urls-gpt-4.1/gpt-4.1/-7312820999761576042/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/anchor-urls-gpt-4.1/gpt-4.1/-7312820999761576042/1.json -------------------------------------------------------------------------------- /traj/anchor-urls-gpt-4.1/gpt-4.1/-7312820999761576042/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/anchor-urls-gpt-4.1/gpt-4.1/-7312820999761576042/2.json -------------------------------------------------------------------------------- /traj/anchor-urls-gpt-4.1/gpt-4.1/-7312820999761576042/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/anchor-urls-gpt-4.1/gpt-4.1/-7312820999761576042/3.json -------------------------------------------------------------------------------- /traj/anchor-urls-gpt-4.1/gpt-4.1/-7312820999761576042/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/anchor-urls-gpt-4.1/gpt-4.1/-7312820999761576042/4.json -------------------------------------------------------------------------------- /traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/-1.json -------------------------------------------------------------------------------- /traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/1.json -------------------------------------------------------------------------------- /traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/2.json -------------------------------------------------------------------------------- /traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/3.json -------------------------------------------------------------------------------- /traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/4.json -------------------------------------------------------------------------------- /traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/5.json -------------------------------------------------------------------------------- /traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/6.json -------------------------------------------------------------------------------- /traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/gaia-text-gpt-4.1/gpt-4.1/17b5a6a3-bc87-42e8-b0fb-6ab0781ef2cc/7.json -------------------------------------------------------------------------------- /traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/-1.json -------------------------------------------------------------------------------- /traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/1.json -------------------------------------------------------------------------------- /traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/10.json -------------------------------------------------------------------------------- /traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/11.json -------------------------------------------------------------------------------- /traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/2.json -------------------------------------------------------------------------------- /traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/3.json -------------------------------------------------------------------------------- /traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/4.json -------------------------------------------------------------------------------- /traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/5.json -------------------------------------------------------------------------------- /traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/6.json -------------------------------------------------------------------------------- /traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/7.json -------------------------------------------------------------------------------- /traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/8.json -------------------------------------------------------------------------------- /traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/traj/webresearchqa-train-gpt-4.1/gpt-4.1/7398285851856723610/9.json -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/utils.py -------------------------------------------------------------------------------- /web_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tencent/WebAggregator/HEAD/web_tools.py --------------------------------------------------------------------------------