gitextract_bghxqcon/ ├── .gitignore ├── LICENSE ├── README.md ├── agents/ │ └── recode/ │ ├── agent.py │ ├── resources/ │ │ ├── fewshots/ │ │ │ ├── alfworld/ │ │ │ │ ├── clean.txt │ │ │ │ ├── cool.txt │ │ │ │ ├── examine.txt │ │ │ │ ├── heat.txt │ │ │ │ ├── put.txt │ │ │ │ └── puttwo.txt │ │ │ ├── sciworld/ │ │ │ │ └── base.txt │ │ │ └── webshop/ │ │ │ └── base.txt │ │ └── prompts/ │ │ ├── alfworld/ │ │ │ └── actions.txt │ │ ├── default_new.py │ │ ├── sciworld/ │ │ │ └── actions.txt │ │ └── webshop/ │ │ └── actions.txt │ └── utils.py ├── base/ │ ├── agent.py │ └── environment.py ├── configs/ │ ├── prices.json │ └── profiles_example.yaml ├── envs/ │ ├── alfworld/ │ │ ├── base_config.yaml │ │ └── env.py │ ├── sciworld/ │ │ ├── base_config.yaml │ │ ├── data/ │ │ │ ├── max_steps.json │ │ │ ├── taskname2id.json │ │ │ ├── test_indices.json │ │ │ ├── train_indices.json │ │ │ └── valid_indices.json │ │ └── env.py │ └── webshop/ │ ├── env.py │ ├── setup.py │ ├── setup.sh │ └── src/ │ └── webshop/ │ ├── __init__.py │ ├── run_envs/ │ │ ├── run_web_agent_site_env.py │ │ └── run_web_agent_text_env.py │ ├── search_engine/ │ │ └── lucene_searcher.py │ ├── transfer/ │ │ ├── README.md │ │ ├── __init__.py │ │ ├── app.py │ │ ├── predict_help.py │ │ └── webshop_lite.py │ └── web_agent_site/ │ ├── __init__.py │ ├── app.py │ ├── attributes/ │ │ ├── annotate.py │ │ └── generate_attrs.py │ ├── engine/ │ │ ├── __init__.py │ │ ├── engine.py │ │ ├── goal.py │ │ └── normalize.py │ ├── envs/ │ │ ├── __init__.py │ │ ├── chromedriver │ │ ├── web_agent_site_env.py │ │ └── web_agent_text_env.py │ ├── models/ │ │ ├── __init__.py │ │ └── models.py │ ├── static/ │ │ └── style.css │ ├── templates/ │ │ ├── attributes_page.html │ │ ├── description_page.html │ │ ├── done_page.html │ │ ├── features_page.html │ │ ├── item_page.html │ │ ├── results_page.html │ │ ├── review_page.html │ │ └── search_page.html │ └── utils.py ├── requirements.txt ├── run.py └── utils/ ├── common.py ├── errors.py ├── executor.py ├── llm.py ├── logger.py └── mockllm.py