├── .github └── ISSUE_TEMPLATE │ ├── 反馈站点失效.md │ └── 添加镜像站点.md ├── .gitignore ├── LICENSE ├── README.md ├── README_en.md ├── convert.py └── urls.json /.github/ISSUE_TEMPLATE/反馈站点失效.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiLittleCat/awesome-free-chatgpt/HEAD/.github/ISSUE_TEMPLATE/反馈站点失效.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/添加镜像站点.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiLittleCat/awesome-free-chatgpt/HEAD/.github/ISSUE_TEMPLATE/添加镜像站点.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiLittleCat/awesome-free-chatgpt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiLittleCat/awesome-free-chatgpt/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiLittleCat/awesome-free-chatgpt/HEAD/README_en.md -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiLittleCat/awesome-free-chatgpt/HEAD/convert.py -------------------------------------------------------------------------------- /urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiLittleCat/awesome-free-chatgpt/HEAD/urls.json --------------------------------------------------------------------------------