├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── chatbot_api.py ├── requirements.txt ├── static ├── icon.ico ├── script.js └── style.css ├── templates └── index.html ├── testcommand.txt └── token_gen.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLime1/gptCensorFree/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLime1/gptCensorFree/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | token.txt 2 | /test -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.analysis.typeCheckingMode": "off" 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLime1/gptCensorFree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLime1/gptCensorFree/HEAD/README.md -------------------------------------------------------------------------------- /chatbot_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLime1/gptCensorFree/HEAD/chatbot_api.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLime1/gptCensorFree/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLime1/gptCensorFree/HEAD/static/icon.ico -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLime1/gptCensorFree/HEAD/static/script.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLime1/gptCensorFree/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLime1/gptCensorFree/HEAD/templates/index.html -------------------------------------------------------------------------------- /testcommand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLime1/gptCensorFree/HEAD/testcommand.txt -------------------------------------------------------------------------------- /token_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLime1/gptCensorFree/HEAD/token_gen.py --------------------------------------------------------------------------------