├── .github └── workflows │ └── mirror.yml ├── LICENSE ├── MIRAGE.yaml ├── README.md ├── configs ├── llama2_selfcitation_prompt.yaml ├── llama2_standard_prompt.yaml ├── zephyr_selfcitation_prompt.yaml └── zephyr_standard_prompt.yaml ├── data_input └── EXAMPLE.json ├── fig ├── CCI.png ├── QR code.pdf ├── mirage_illustration.png └── mirage_logo.png ├── mirage.py ├── requirements.txt └── utils.py /.github/workflows/mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/.github/workflows/mirror.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/LICENSE -------------------------------------------------------------------------------- /MIRAGE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/MIRAGE.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/README.md -------------------------------------------------------------------------------- /configs/llama2_selfcitation_prompt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/configs/llama2_selfcitation_prompt.yaml -------------------------------------------------------------------------------- /configs/llama2_standard_prompt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/configs/llama2_standard_prompt.yaml -------------------------------------------------------------------------------- /configs/zephyr_selfcitation_prompt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/configs/zephyr_selfcitation_prompt.yaml -------------------------------------------------------------------------------- /configs/zephyr_standard_prompt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/configs/zephyr_standard_prompt.yaml -------------------------------------------------------------------------------- /data_input/EXAMPLE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/data_input/EXAMPLE.json -------------------------------------------------------------------------------- /fig/CCI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/fig/CCI.png -------------------------------------------------------------------------------- /fig/QR code.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/fig/QR code.pdf -------------------------------------------------------------------------------- /fig/mirage_illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/fig/mirage_illustration.png -------------------------------------------------------------------------------- /fig/mirage_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/fig/mirage_logo.png -------------------------------------------------------------------------------- /mirage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/mirage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Betswish/MIRAGE/HEAD/utils.py --------------------------------------------------------------------------------