├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __init__.py ├── api_client.py ├── ifeval.py ├── metrics.py ├── multi_turn_instruct_following_eval_api.py ├── multi_turn_instruct_following_eval_vllm.py ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Multi-IF/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Multi-IF/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Multi-IF/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Multi-IF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Multi-IF/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Multi-IF/HEAD/__init__.py -------------------------------------------------------------------------------- /api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Multi-IF/HEAD/api_client.py -------------------------------------------------------------------------------- /ifeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Multi-IF/HEAD/ifeval.py -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Multi-IF/HEAD/metrics.py -------------------------------------------------------------------------------- /multi_turn_instruct_following_eval_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Multi-IF/HEAD/multi_turn_instruct_following_eval_api.py -------------------------------------------------------------------------------- /multi_turn_instruct_following_eval_vllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Multi-IF/HEAD/multi_turn_instruct_following_eval_vllm.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Multi-IF/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/Multi-IF/HEAD/utils.py --------------------------------------------------------------------------------