├── LICENSE ├── README.md ├── baselines ├── README.md ├── __init__.py ├── cot_least_to_most.py ├── cot_sc.py ├── example.py ├── lats │ ├── lats.py │ ├── lats.sh │ └── lats_prompts.py ├── react.py ├── react_sc.py └── reflexion │ ├── base_prompt.txt │ ├── env_history.py │ ├── generate_reflections.py │ ├── reflection_few_shot_examples.txt │ ├── reflexion.py │ ├── reflexion.sh │ ├── utils.py │ └── webshop_trial.py ├── environments ├── __init__.py ├── apis.py ├── env_instr_list_ua2webshop_runtime.py ├── env_instr_list_ua2webshop_runtime_session.py └── env_instr_list_ua2webshop_runtime_session_d.py ├── figs ├── Insight.png ├── Profiler.png ├── agentforce-logo.jpg └── performance-comparison.png ├── requirements.txt └── ua2-agent ├── Insight.py ├── Profiler.py ├── __init__.leacy.py ├── prompt_lib.py ├── react_w_insights_w_profiler_v0benchmark.py ├── react_w_insights_w_profiler_v1benchmark.py └── react_w_insights_w_profiler_v1dbenchmark.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/README.md -------------------------------------------------------------------------------- /baselines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/README.md -------------------------------------------------------------------------------- /baselines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/cot_least_to_most.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/cot_least_to_most.py -------------------------------------------------------------------------------- /baselines/cot_sc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/cot_sc.py -------------------------------------------------------------------------------- /baselines/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/example.py -------------------------------------------------------------------------------- /baselines/lats/lats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/lats/lats.py -------------------------------------------------------------------------------- /baselines/lats/lats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/lats/lats.sh -------------------------------------------------------------------------------- /baselines/lats/lats_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/lats/lats_prompts.py -------------------------------------------------------------------------------- /baselines/react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/react.py -------------------------------------------------------------------------------- /baselines/react_sc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/react_sc.py -------------------------------------------------------------------------------- /baselines/reflexion/base_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/reflexion/base_prompt.txt -------------------------------------------------------------------------------- /baselines/reflexion/env_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/reflexion/env_history.py -------------------------------------------------------------------------------- /baselines/reflexion/generate_reflections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/reflexion/generate_reflections.py -------------------------------------------------------------------------------- /baselines/reflexion/reflection_few_shot_examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/reflexion/reflection_few_shot_examples.txt -------------------------------------------------------------------------------- /baselines/reflexion/reflexion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/reflexion/reflexion.py -------------------------------------------------------------------------------- /baselines/reflexion/reflexion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/reflexion/reflexion.sh -------------------------------------------------------------------------------- /baselines/reflexion/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/reflexion/utils.py -------------------------------------------------------------------------------- /baselines/reflexion/webshop_trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/baselines/reflexion/webshop_trial.py -------------------------------------------------------------------------------- /environments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /environments/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/environments/apis.py -------------------------------------------------------------------------------- /environments/env_instr_list_ua2webshop_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/environments/env_instr_list_ua2webshop_runtime.py -------------------------------------------------------------------------------- /environments/env_instr_list_ua2webshop_runtime_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/environments/env_instr_list_ua2webshop_runtime_session.py -------------------------------------------------------------------------------- /environments/env_instr_list_ua2webshop_runtime_session_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/environments/env_instr_list_ua2webshop_runtime_session_d.py -------------------------------------------------------------------------------- /figs/Insight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/figs/Insight.png -------------------------------------------------------------------------------- /figs/Profiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/figs/Profiler.png -------------------------------------------------------------------------------- /figs/agentforce-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/figs/agentforce-logo.jpg -------------------------------------------------------------------------------- /figs/performance-comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/figs/performance-comparison.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/requirements.txt -------------------------------------------------------------------------------- /ua2-agent/Insight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/ua2-agent/Insight.py -------------------------------------------------------------------------------- /ua2-agent/Profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/ua2-agent/Profiler.py -------------------------------------------------------------------------------- /ua2-agent/__init__.leacy.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ua2-agent/prompt_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/ua2-agent/prompt_lib.py -------------------------------------------------------------------------------- /ua2-agent/react_w_insights_w_profiler_v0benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/ua2-agent/react_w_insights_w_profiler_v0benchmark.py -------------------------------------------------------------------------------- /ua2-agent/react_w_insights_w_profiler_v1benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/ua2-agent/react_w_insights_w_profiler_v1benchmark.py -------------------------------------------------------------------------------- /ua2-agent/react_w_insights_w_profiler_v1dbenchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgentForceTeamOfficial/UA2-Agent/HEAD/ua2-agent/react_w_insights_w_profiler_v1dbenchmark.py --------------------------------------------------------------------------------