├── .gitignore ├── LICENSE ├── Notice.txt ├── README.md ├── assets ├── method.pdf └── method.png ├── eval.py ├── mcts_collection.py ├── mcts_utils ├── llm_server.py ├── mcts_raw.py ├── sciworld │ ├── data_utils_sw.py │ ├── eval_utils_sw.py │ ├── mcts_sci.py │ └── sciworld_test.json ├── textcraft │ ├── mcts_tc.py │ ├── textcraft_test.json │ └── textcraft_train_clean.json └── webshop │ ├── mcts_ws.py │ ├── webshop_test.json │ └── webshop_train_clean.json ├── path_collection.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/LICENSE -------------------------------------------------------------------------------- /Notice.txt: -------------------------------------------------------------------------------- 1 | Copyright (year) Bytedance Ltd. and/or its affiliates 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/README.md -------------------------------------------------------------------------------- /assets/method.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/assets/method.pdf -------------------------------------------------------------------------------- /assets/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/assets/method.png -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/eval.py -------------------------------------------------------------------------------- /mcts_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/mcts_collection.py -------------------------------------------------------------------------------- /mcts_utils/llm_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/mcts_utils/llm_server.py -------------------------------------------------------------------------------- /mcts_utils/mcts_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/mcts_utils/mcts_raw.py -------------------------------------------------------------------------------- /mcts_utils/sciworld/data_utils_sw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/mcts_utils/sciworld/data_utils_sw.py -------------------------------------------------------------------------------- /mcts_utils/sciworld/eval_utils_sw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/mcts_utils/sciworld/eval_utils_sw.py -------------------------------------------------------------------------------- /mcts_utils/sciworld/mcts_sci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/mcts_utils/sciworld/mcts_sci.py -------------------------------------------------------------------------------- /mcts_utils/sciworld/sciworld_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/mcts_utils/sciworld/sciworld_test.json -------------------------------------------------------------------------------- /mcts_utils/textcraft/mcts_tc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/mcts_utils/textcraft/mcts_tc.py -------------------------------------------------------------------------------- /mcts_utils/textcraft/textcraft_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/mcts_utils/textcraft/textcraft_test.json -------------------------------------------------------------------------------- /mcts_utils/textcraft/textcraft_train_clean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/mcts_utils/textcraft/textcraft_train_clean.json -------------------------------------------------------------------------------- /mcts_utils/webshop/mcts_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/mcts_utils/webshop/mcts_ws.py -------------------------------------------------------------------------------- /mcts_utils/webshop/webshop_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/mcts_utils/webshop/webshop_test.json -------------------------------------------------------------------------------- /mcts_utils/webshop/webshop_train_clean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/mcts_utils/webshop/webshop_train_clean.json -------------------------------------------------------------------------------- /path_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/path_collection.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ByteDance-Seed/Agent-R/HEAD/requirements.txt --------------------------------------------------------------------------------