├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── imgs ├── clean.JPG ├── code.JPG └── example.JPG ├── requirements.txt └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmet/chatgpt_webui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmet/chatgpt_webui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmet/chatgpt_webui/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmet/chatgpt_webui/HEAD/app.py -------------------------------------------------------------------------------- /imgs/clean.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmet/chatgpt_webui/HEAD/imgs/clean.JPG -------------------------------------------------------------------------------- /imgs/code.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmet/chatgpt_webui/HEAD/imgs/code.JPG -------------------------------------------------------------------------------- /imgs/example.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmet/chatgpt_webui/HEAD/imgs/example.JPG -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | revChatGPT 2 | gradio 3 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotmet/chatgpt_webui/HEAD/style.css --------------------------------------------------------------------------------