├── .DS_Store ├── LICENSE ├── LLM.py ├── README.md ├── __init__.py ├── __pycache__ ├── LLM.cpython-310.pyc ├── agents.cpython-310.pyc └── utils.cpython-310.pyc ├── agents.py ├── assets ├── logo.jpg └── title.png ├── config.yaml ├── dataset ├── all_case.json └── case.json ├── main.py ├── prompts ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── deep_research_agent_prompts.cpython-310.pyc │ ├── juder_prompts.cpython-310.pyc │ └── review_agent_prompts.cpython-310.pyc ├── deep_research_agent_prompts.py ├── juder_prompts.py └── review_agent_prompts.py ├── requirements.txt ├── searcher ├── .DS_Store ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ └── sementic_search.cpython-310.pyc └── sementic_search.py └── utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/LICENSE -------------------------------------------------------------------------------- /LLM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/LLM.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__pycache__/LLM.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/__pycache__/LLM.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/agents.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/__pycache__/agents.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/agents.py -------------------------------------------------------------------------------- /assets/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/assets/logo.jpg -------------------------------------------------------------------------------- /assets/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/assets/title.png -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/config.yaml -------------------------------------------------------------------------------- /dataset/all_case.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/dataset/all_case.json -------------------------------------------------------------------------------- /dataset/case.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/dataset/case.json -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/main.py -------------------------------------------------------------------------------- /prompts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/prompts/__init__.py -------------------------------------------------------------------------------- /prompts/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/prompts/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /prompts/__pycache__/deep_research_agent_prompts.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/prompts/__pycache__/deep_research_agent_prompts.cpython-310.pyc -------------------------------------------------------------------------------- /prompts/__pycache__/juder_prompts.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/prompts/__pycache__/juder_prompts.cpython-310.pyc -------------------------------------------------------------------------------- /prompts/__pycache__/review_agent_prompts.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/prompts/__pycache__/review_agent_prompts.cpython-310.pyc -------------------------------------------------------------------------------- /prompts/deep_research_agent_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/prompts/deep_research_agent_prompts.py -------------------------------------------------------------------------------- /prompts/juder_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/prompts/juder_prompts.py -------------------------------------------------------------------------------- /prompts/review_agent_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/prompts/review_agent_prompts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/requirements.txt -------------------------------------------------------------------------------- /searcher/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/searcher/.DS_Store -------------------------------------------------------------------------------- /searcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/searcher/__init__.py -------------------------------------------------------------------------------- /searcher/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/searcher/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /searcher/__pycache__/sementic_search.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/searcher/__pycache__/sementic_search.cpython-310.pyc -------------------------------------------------------------------------------- /searcher/sementic_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/searcher/sementic_search.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/CoI-Agent/HEAD/utils.py --------------------------------------------------------------------------------