├── .gitignore ├── LICENSE ├── README.md ├── README_zh.md ├── app.py ├── lang.py ├── requirements.txt └── styles.css /.gitignore: -------------------------------------------------------------------------------- 1 | # Environment files 2 | .env 3 | .apikey # 同时忽略旧密钥文件 4 | 5 | # Python 6 | __pycache__/ 7 | *.py[cod] 8 | .venv/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intelligent-Internet/CoT-Lab-Demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intelligent-Internet/CoT-Lab-Demo/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intelligent-Internet/CoT-Lab-Demo/HEAD/README_zh.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intelligent-Internet/CoT-Lab-Demo/HEAD/app.py -------------------------------------------------------------------------------- /lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intelligent-Internet/CoT-Lab-Demo/HEAD/lang.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | openai 2 | python-dotenv 3 | gradio -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | footer{display:none !important} --------------------------------------------------------------------------------