├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── ChatgptHandler.py └── __init__.py ├── docs └── images │ ├── image-20230209094645629.png │ ├── step1.png │ ├── step2.png │ └── step4.png ├── main.py ├── requirements.txt └── util ├── __init__.py ├── log.py └── route.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mggger/chatgpt-bot-dingding/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mggger/chatgpt-bot-dingding/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mggger/chatgpt-bot-dingding/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mggger/chatgpt-bot-dingding/HEAD/README.md -------------------------------------------------------------------------------- /app/ChatgptHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mggger/chatgpt-bot-dingding/HEAD/app/ChatgptHandler.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ChatgptHandler 2 | -------------------------------------------------------------------------------- /docs/images/image-20230209094645629.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mggger/chatgpt-bot-dingding/HEAD/docs/images/image-20230209094645629.png -------------------------------------------------------------------------------- /docs/images/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mggger/chatgpt-bot-dingding/HEAD/docs/images/step1.png -------------------------------------------------------------------------------- /docs/images/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mggger/chatgpt-bot-dingding/HEAD/docs/images/step2.png -------------------------------------------------------------------------------- /docs/images/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mggger/chatgpt-bot-dingding/HEAD/docs/images/step4.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mggger/chatgpt-bot-dingding/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tornado 2 | openai==0.27.0 3 | requests -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mggger/chatgpt-bot-dingding/HEAD/util/log.py -------------------------------------------------------------------------------- /util/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mggger/chatgpt-bot-dingding/HEAD/util/route.py --------------------------------------------------------------------------------