├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── README_ja.md ├── README_zh.md ├── agent ├── README.md ├── README_ja.md ├── README_zh.md ├── __init__.py ├── agentmodule.py ├── channels.py ├── components.py ├── constant.py ├── datamodel.py ├── icon.ico ├── main.py ├── prompt.py ├── ragent.py ├── register │ ├── __init__.py │ ├── exceptions.py │ ├── label.py │ ├── register.py │ ├── tools │ │ ├── __init__.py │ │ ├── android.py │ │ ├── browser.py │ │ ├── chat.py │ │ ├── filesystem.py │ │ └── windows.py │ └── wrapper.py ├── register_hkey_aumid.py └── resource │ └── aw-watcher-web.zip ├── assets └── overall_pipeline.png ├── dataset ├── README.md ├── README_ja.md ├── README_zh.md ├── agent_data │ └── README.md ├── annotation │ ├── convert_annotations.py │ ├── main.py │ └── style.css ├── build_agent_trainset.py ├── build_reward_trainset.py ├── build_scenes.py ├── calculate_human_agreement.py ├── new_scenes.yaml ├── new_scenes_good.yaml ├── reward_data │ ├── test_data.jsonl │ ├── train_data.jsonl │ └── trainset_reward_llama.json ├── run_datagen.py ├── scenes.yaml ├── seedtask.yaml └── test_data │ ├── code_11.json │ ├── code_12.json │ ├── code_13.json │ ├── code_14.json │ ├── code_15.json │ ├── code_16.json │ ├── splits.json │ ├── writing_11.json │ ├── writing_12.json │ ├── writing_13.json │ ├── writing_14.json │ ├── writing_15.json │ └── writing_16.json ├── envs ├── .DS_Store └── aw-watcher-agent │ ├── aw_tools.py │ └── main.py ├── eval ├── README.md ├── README_ja.md ├── README_zh.md ├── calculate.sh ├── calculate_agent_performance.py ├── judge_agent_prediction.py ├── judge_result.sh ├── merge.ipynb ├── results │ ├── activeagent.csv │ ├── activellama.csv │ ├── activenoagent.csv │ ├── activeqwen.csv │ ├── claude-3-5-sonnet.csv │ ├── claude-3-sonnet-20240229.csv │ ├── deepseek-7b-chat.csv │ ├── gpt-3.5-turbo.csv │ ├── gpt-4o-mini.csv │ ├── gpt-4o.csv │ ├── judged.csv │ ├── llama3-70b.csv │ ├── llama3-8b.csv │ ├── llama3.1-70b.csv │ ├── llama3.1-8b.csv │ ├── qwen2-72b-instruct.csv │ └── qwen2-7b.csv ├── reward_model_scoring.py ├── reward_model_template.py ├── script.py └── traces.zip ├── example_config.toml ├── gym ├── README.md ├── README_ja.md ├── README_zh.md ├── __init__.py ├── channel.py ├── components │ ├── __init__.py │ ├── activeagent.py │ ├── base.py │ ├── environment.py │ ├── reward.py │ └── user.py ├── config.py ├── example.yaml ├── main.py └── models │ ├── __init__.py │ ├── env.py │ └── user.py ├── poetry.lock ├── pyproject.toml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/README.md -------------------------------------------------------------------------------- /README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/README_ja.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/README_zh.md -------------------------------------------------------------------------------- /agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/README.md -------------------------------------------------------------------------------- /agent/README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/README_ja.md -------------------------------------------------------------------------------- /agent/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/README_zh.md -------------------------------------------------------------------------------- /agent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /agent/agentmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/agentmodule.py -------------------------------------------------------------------------------- /agent/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/channels.py -------------------------------------------------------------------------------- /agent/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/components.py -------------------------------------------------------------------------------- /agent/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/constant.py -------------------------------------------------------------------------------- /agent/datamodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/datamodel.py -------------------------------------------------------------------------------- /agent/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/icon.ico -------------------------------------------------------------------------------- /agent/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/main.py -------------------------------------------------------------------------------- /agent/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/prompt.py -------------------------------------------------------------------------------- /agent/ragent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/ragent.py -------------------------------------------------------------------------------- /agent/register/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/register/__init__.py -------------------------------------------------------------------------------- /agent/register/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/register/exceptions.py -------------------------------------------------------------------------------- /agent/register/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/register/label.py -------------------------------------------------------------------------------- /agent/register/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/register/register.py -------------------------------------------------------------------------------- /agent/register/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/register/tools/__init__.py -------------------------------------------------------------------------------- /agent/register/tools/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/register/tools/android.py -------------------------------------------------------------------------------- /agent/register/tools/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/register/tools/browser.py -------------------------------------------------------------------------------- /agent/register/tools/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/register/tools/chat.py -------------------------------------------------------------------------------- /agent/register/tools/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/register/tools/filesystem.py -------------------------------------------------------------------------------- /agent/register/tools/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/register/tools/windows.py -------------------------------------------------------------------------------- /agent/register/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/register/wrapper.py -------------------------------------------------------------------------------- /agent/register_hkey_aumid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/register_hkey_aumid.py -------------------------------------------------------------------------------- /agent/resource/aw-watcher-web.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/agent/resource/aw-watcher-web.zip -------------------------------------------------------------------------------- /assets/overall_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/assets/overall_pipeline.png -------------------------------------------------------------------------------- /dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/README.md -------------------------------------------------------------------------------- /dataset/README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/README_ja.md -------------------------------------------------------------------------------- /dataset/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/README_zh.md -------------------------------------------------------------------------------- /dataset/agent_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/agent_data/README.md -------------------------------------------------------------------------------- /dataset/annotation/convert_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/annotation/convert_annotations.py -------------------------------------------------------------------------------- /dataset/annotation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/annotation/main.py -------------------------------------------------------------------------------- /dataset/annotation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/annotation/style.css -------------------------------------------------------------------------------- /dataset/build_agent_trainset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/build_agent_trainset.py -------------------------------------------------------------------------------- /dataset/build_reward_trainset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/build_reward_trainset.py -------------------------------------------------------------------------------- /dataset/build_scenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/build_scenes.py -------------------------------------------------------------------------------- /dataset/calculate_human_agreement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/calculate_human_agreement.py -------------------------------------------------------------------------------- /dataset/new_scenes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/new_scenes.yaml -------------------------------------------------------------------------------- /dataset/new_scenes_good.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/new_scenes_good.yaml -------------------------------------------------------------------------------- /dataset/reward_data/test_data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/reward_data/test_data.jsonl -------------------------------------------------------------------------------- /dataset/reward_data/train_data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/reward_data/train_data.jsonl -------------------------------------------------------------------------------- /dataset/reward_data/trainset_reward_llama.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/reward_data/trainset_reward_llama.json -------------------------------------------------------------------------------- /dataset/run_datagen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/run_datagen.py -------------------------------------------------------------------------------- /dataset/scenes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/scenes.yaml -------------------------------------------------------------------------------- /dataset/seedtask.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/seedtask.yaml -------------------------------------------------------------------------------- /dataset/test_data/code_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/test_data/code_11.json -------------------------------------------------------------------------------- /dataset/test_data/code_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/test_data/code_12.json -------------------------------------------------------------------------------- /dataset/test_data/code_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/test_data/code_13.json -------------------------------------------------------------------------------- /dataset/test_data/code_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/test_data/code_14.json -------------------------------------------------------------------------------- /dataset/test_data/code_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/test_data/code_15.json -------------------------------------------------------------------------------- /dataset/test_data/code_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/test_data/code_16.json -------------------------------------------------------------------------------- /dataset/test_data/splits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/test_data/splits.json -------------------------------------------------------------------------------- /dataset/test_data/writing_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/test_data/writing_11.json -------------------------------------------------------------------------------- /dataset/test_data/writing_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/test_data/writing_12.json -------------------------------------------------------------------------------- /dataset/test_data/writing_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/test_data/writing_13.json -------------------------------------------------------------------------------- /dataset/test_data/writing_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/test_data/writing_14.json -------------------------------------------------------------------------------- /dataset/test_data/writing_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/test_data/writing_15.json -------------------------------------------------------------------------------- /dataset/test_data/writing_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/dataset/test_data/writing_16.json -------------------------------------------------------------------------------- /envs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/envs/.DS_Store -------------------------------------------------------------------------------- /envs/aw-watcher-agent/aw_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/envs/aw-watcher-agent/aw_tools.py -------------------------------------------------------------------------------- /envs/aw-watcher-agent/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/envs/aw-watcher-agent/main.py -------------------------------------------------------------------------------- /eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/README.md -------------------------------------------------------------------------------- /eval/README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/README_ja.md -------------------------------------------------------------------------------- /eval/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/README_zh.md -------------------------------------------------------------------------------- /eval/calculate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/calculate.sh -------------------------------------------------------------------------------- /eval/calculate_agent_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/calculate_agent_performance.py -------------------------------------------------------------------------------- /eval/judge_agent_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/judge_agent_prediction.py -------------------------------------------------------------------------------- /eval/judge_result.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/judge_result.sh -------------------------------------------------------------------------------- /eval/merge.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/merge.ipynb -------------------------------------------------------------------------------- /eval/results/activeagent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/activeagent.csv -------------------------------------------------------------------------------- /eval/results/activellama.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/activellama.csv -------------------------------------------------------------------------------- /eval/results/activenoagent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/activenoagent.csv -------------------------------------------------------------------------------- /eval/results/activeqwen.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/activeqwen.csv -------------------------------------------------------------------------------- /eval/results/claude-3-5-sonnet.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/claude-3-5-sonnet.csv -------------------------------------------------------------------------------- /eval/results/claude-3-sonnet-20240229.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/claude-3-sonnet-20240229.csv -------------------------------------------------------------------------------- /eval/results/deepseek-7b-chat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/deepseek-7b-chat.csv -------------------------------------------------------------------------------- /eval/results/gpt-3.5-turbo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/gpt-3.5-turbo.csv -------------------------------------------------------------------------------- /eval/results/gpt-4o-mini.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/gpt-4o-mini.csv -------------------------------------------------------------------------------- /eval/results/gpt-4o.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/gpt-4o.csv -------------------------------------------------------------------------------- /eval/results/judged.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /eval/results/llama3-70b.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/llama3-70b.csv -------------------------------------------------------------------------------- /eval/results/llama3-8b.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/llama3-8b.csv -------------------------------------------------------------------------------- /eval/results/llama3.1-70b.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/llama3.1-70b.csv -------------------------------------------------------------------------------- /eval/results/llama3.1-8b.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/llama3.1-8b.csv -------------------------------------------------------------------------------- /eval/results/qwen2-72b-instruct.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/qwen2-72b-instruct.csv -------------------------------------------------------------------------------- /eval/results/qwen2-7b.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/results/qwen2-7b.csv -------------------------------------------------------------------------------- /eval/reward_model_scoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/reward_model_scoring.py -------------------------------------------------------------------------------- /eval/reward_model_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/reward_model_template.py -------------------------------------------------------------------------------- /eval/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/script.py -------------------------------------------------------------------------------- /eval/traces.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/eval/traces.zip -------------------------------------------------------------------------------- /example_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/example_config.toml -------------------------------------------------------------------------------- /gym/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/gym/README.md -------------------------------------------------------------------------------- /gym/README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/gym/README_ja.md -------------------------------------------------------------------------------- /gym/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/gym/README_zh.md -------------------------------------------------------------------------------- /gym/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gym/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/gym/channel.py -------------------------------------------------------------------------------- /gym/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/gym/components/__init__.py -------------------------------------------------------------------------------- /gym/components/activeagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/gym/components/activeagent.py -------------------------------------------------------------------------------- /gym/components/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/gym/components/base.py -------------------------------------------------------------------------------- /gym/components/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/gym/components/environment.py -------------------------------------------------------------------------------- /gym/components/reward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/gym/components/reward.py -------------------------------------------------------------------------------- /gym/components/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/gym/components/user.py -------------------------------------------------------------------------------- /gym/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/gym/config.py -------------------------------------------------------------------------------- /gym/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/gym/example.yaml -------------------------------------------------------------------------------- /gym/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/gym/main.py -------------------------------------------------------------------------------- /gym/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gym/models/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/gym/models/env.py -------------------------------------------------------------------------------- /gym/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/gym/models/user.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/ProactiveAgent/HEAD/requirements.txt --------------------------------------------------------------------------------