├── .gitignore ├── README.md ├── assets └── ContrastiveIntro.png ├── demo.py ├── openai_info.json └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/contrastive-cot/HEAD/README.md -------------------------------------------------------------------------------- /assets/ContrastiveIntro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/contrastive-cot/HEAD/assets/ContrastiveIntro.png -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/contrastive-cot/HEAD/demo.py -------------------------------------------------------------------------------- /openai_info.json: -------------------------------------------------------------------------------- 1 | {"engine": "gpt-3.5-turbo-0301", "key": "YOUR_KEY_HERE"} 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DAMO-NLP-SG/contrastive-cot/HEAD/requirements.txt --------------------------------------------------------------------------------