├── .DS_Store ├── .gitignore ├── ChatMASs ├── mas_autogen.py ├── mas_camel.py ├── output.json └── topo.py ├── README.md ├── open-ended ├── .DS_Store ├── config │ ├── api_keys.yaml │ └── llama.yaml ├── datasets │ └── agent_preinstall.json ├── prompt_data │ ├── content_templet.txt │ ├── json_templet.txt │ ├── return_format.txt │ └── tool_pre_information.txt ├── run.py └── sandbox │ ├── action.py │ ├── agent.py │ ├── generate.py │ ├── log.py │ ├── message.py │ ├── pre_info.py │ ├── simulator.py │ └── tool.py └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/.gitignore -------------------------------------------------------------------------------- /ChatMASs/mas_autogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/ChatMASs/mas_autogen.py -------------------------------------------------------------------------------- /ChatMASs/mas_camel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/ChatMASs/mas_camel.py -------------------------------------------------------------------------------- /ChatMASs/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/ChatMASs/output.json -------------------------------------------------------------------------------- /ChatMASs/topo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/ChatMASs/topo.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/README.md -------------------------------------------------------------------------------- /open-ended/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/.DS_Store -------------------------------------------------------------------------------- /open-ended/config/api_keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/config/api_keys.yaml -------------------------------------------------------------------------------- /open-ended/config/llama.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/config/llama.yaml -------------------------------------------------------------------------------- /open-ended/datasets/agent_preinstall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/datasets/agent_preinstall.json -------------------------------------------------------------------------------- /open-ended/prompt_data/content_templet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/prompt_data/content_templet.txt -------------------------------------------------------------------------------- /open-ended/prompt_data/json_templet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/prompt_data/json_templet.txt -------------------------------------------------------------------------------- /open-ended/prompt_data/return_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/prompt_data/return_format.txt -------------------------------------------------------------------------------- /open-ended/prompt_data/tool_pre_information.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/prompt_data/tool_pre_information.txt -------------------------------------------------------------------------------- /open-ended/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/run.py -------------------------------------------------------------------------------- /open-ended/sandbox/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/sandbox/action.py -------------------------------------------------------------------------------- /open-ended/sandbox/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/sandbox/agent.py -------------------------------------------------------------------------------- /open-ended/sandbox/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/sandbox/generate.py -------------------------------------------------------------------------------- /open-ended/sandbox/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/sandbox/log.py -------------------------------------------------------------------------------- /open-ended/sandbox/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/sandbox/message.py -------------------------------------------------------------------------------- /open-ended/sandbox/pre_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/sandbox/pre_info.py -------------------------------------------------------------------------------- /open-ended/sandbox/simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/sandbox/simulator.py -------------------------------------------------------------------------------- /open-ended/sandbox/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/open-ended/sandbox/tool.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhrli324/Corba/HEAD/requirements.txt --------------------------------------------------------------------------------