├── README.md ├── biography ├── article.json ├── eval_conversation.py └── gen_conversation.py ├── gsm ├── eval_gsm.py └── gen_gsm.py ├── math └── gen_math.py ├── mmlu ├── eval_mmlu.py └── gen_mmlu.py └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composable-models/llm_multiagent_debate/HEAD/README.md -------------------------------------------------------------------------------- /biography/article.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composable-models/llm_multiagent_debate/HEAD/biography/article.json -------------------------------------------------------------------------------- /biography/eval_conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composable-models/llm_multiagent_debate/HEAD/biography/eval_conversation.py -------------------------------------------------------------------------------- /biography/gen_conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composable-models/llm_multiagent_debate/HEAD/biography/gen_conversation.py -------------------------------------------------------------------------------- /gsm/eval_gsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composable-models/llm_multiagent_debate/HEAD/gsm/eval_gsm.py -------------------------------------------------------------------------------- /gsm/gen_gsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composable-models/llm_multiagent_debate/HEAD/gsm/gen_gsm.py -------------------------------------------------------------------------------- /math/gen_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composable-models/llm_multiagent_debate/HEAD/math/gen_math.py -------------------------------------------------------------------------------- /mmlu/eval_mmlu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composable-models/llm_multiagent_debate/HEAD/mmlu/eval_mmlu.py -------------------------------------------------------------------------------- /mmlu/gen_mmlu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composable-models/llm_multiagent_debate/HEAD/mmlu/gen_mmlu.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.22.4 2 | openai==0.27.6 3 | pandas==1.5.3 4 | tqdm==4.64.1 5 | --------------------------------------------------------------------------------