├── .gitignore ├── LICENSE ├── README.md ├── TextCraft ├── crafting_tree.py ├── env.py └── utils.py ├── alfred_tw_env.py ├── assets ├── README.md ├── adapt_flow.png └── adapt_sys.png ├── prompts ├── alfworld_3prompts_endings.json ├── alfworld_atomic_exec_prompts.json └── alfworld_plan_filled_prompts.json ├── requirements.txt ├── results ├── ADaPT_maxd3_alfworld_text_davinci_003.json ├── ADaPT_maxd3_textcraft_gpt-3.5-turbo-instruct.json ├── ADaPT_maxd3_webshop_gpt-3.5-turbo.json └── README.md ├── run_alfworld.py ├── run_textcraft.py └── run_webshop.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/README.md -------------------------------------------------------------------------------- /TextCraft/crafting_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/TextCraft/crafting_tree.py -------------------------------------------------------------------------------- /TextCraft/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/TextCraft/env.py -------------------------------------------------------------------------------- /TextCraft/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/TextCraft/utils.py -------------------------------------------------------------------------------- /alfred_tw_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/alfred_tw_env.py -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/adapt_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/assets/adapt_flow.png -------------------------------------------------------------------------------- /assets/adapt_sys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/assets/adapt_sys.png -------------------------------------------------------------------------------- /prompts/alfworld_3prompts_endings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/prompts/alfworld_3prompts_endings.json -------------------------------------------------------------------------------- /prompts/alfworld_atomic_exec_prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/prompts/alfworld_atomic_exec_prompts.json -------------------------------------------------------------------------------- /prompts/alfworld_plan_filled_prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/prompts/alfworld_plan_filled_prompts.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/ADaPT_maxd3_alfworld_text_davinci_003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/results/ADaPT_maxd3_alfworld_text_davinci_003.json -------------------------------------------------------------------------------- /results/ADaPT_maxd3_textcraft_gpt-3.5-turbo-instruct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/results/ADaPT_maxd3_textcraft_gpt-3.5-turbo-instruct.json -------------------------------------------------------------------------------- /results/ADaPT_maxd3_webshop_gpt-3.5-turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/results/ADaPT_maxd3_webshop_gpt-3.5-turbo.json -------------------------------------------------------------------------------- /results/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /run_alfworld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/run_alfworld.py -------------------------------------------------------------------------------- /run_textcraft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/run_textcraft.py -------------------------------------------------------------------------------- /run_webshop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/archiki/ADaPT/HEAD/run_webshop.py --------------------------------------------------------------------------------