├── .DS_Store ├── README.md ├── __pycache__ ├── agents.cpython-310.pyc ├── fewshots.cpython-310.pyc └── prompts.cpython-310.pyc ├── agents.py ├── data └── dataset.json ├── fewshots.py ├── prompts.py ├── requirements.txt └── src ├── .DS_Store ├── __pycache__ ├── api.cpython-310.pyc ├── generated_tools.cpython-310.pyc ├── globals.cpython-310.pyc ├── prompt.cpython-310.pyc ├── schema.cpython-310.pyc └── utils.cpython-310.pyc ├── evaluation └── eval.py ├── generated_tools.py ├── globals.py ├── output ├── .DS_Store ├── log_react_glm-4.txt └── react_glm-4.json ├── plan_and_execute.py ├── plan_and_solve.py ├── prompt.py ├── react.py ├── schema.py ├── token └── react_glm-4.json └── utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/agents.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/__pycache__/agents.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/fewshots.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/__pycache__/fewshots.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/prompts.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/__pycache__/prompts.cpython-310.pyc -------------------------------------------------------------------------------- /agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/agents.py -------------------------------------------------------------------------------- /data/dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/data/dataset.json -------------------------------------------------------------------------------- /fewshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/fewshots.py -------------------------------------------------------------------------------- /prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/prompts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/__pycache__/api.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/__pycache__/api.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/generated_tools.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/__pycache__/generated_tools.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/globals.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/__pycache__/globals.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/prompt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/__pycache__/prompt.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/schema.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/__pycache__/schema.cpython-310.pyc -------------------------------------------------------------------------------- /src/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /src/evaluation/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/evaluation/eval.py -------------------------------------------------------------------------------- /src/generated_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/generated_tools.py -------------------------------------------------------------------------------- /src/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/globals.py -------------------------------------------------------------------------------- /src/output/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/output/.DS_Store -------------------------------------------------------------------------------- /src/output/log_react_glm-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/output/log_react_glm-4.txt -------------------------------------------------------------------------------- /src/output/react_glm-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/output/react_glm-4.json -------------------------------------------------------------------------------- /src/plan_and_execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/plan_and_execute.py -------------------------------------------------------------------------------- /src/plan_and_solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/plan_and_solve.py -------------------------------------------------------------------------------- /src/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/prompt.py -------------------------------------------------------------------------------- /src/react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/react.py -------------------------------------------------------------------------------- /src/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/schema.py -------------------------------------------------------------------------------- /src/token/react_glm-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/token/react_glm-4.json -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CSHaitao/LegalAgentBench/HEAD/src/utils.py --------------------------------------------------------------------------------