├── .dockerignore ├── .editorconfig ├── .env.dist ├── .github ├── ISSUE_TEMPLATE.md ├── assets │ ├── click_bot.png │ ├── config_bot.png │ ├── create_app.png │ ├── enable_stream.png │ └── stream_chat.gif └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── chatbot ├── __init__.py ├── __main__.py ├── chatgpt.py ├── config.py ├── constants.py ├── database.py ├── dingtalk.py ├── main.py ├── schemas.py ├── templates.py └── utils.py ├── docker └── start ├── docs ├── api.md ├── changelog.md ├── contributing.md ├── index.md ├── installation.md └── usage.md ├── makefile ├── mkdocs.yml ├── overrides └── partials │ └── comments.html ├── poetry.lock ├── pyproject.toml ├── setup.cfg ├── tests ├── __init__.py └── test_chatbot.py └── tox.ini /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/.env.dist -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/assets/click_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/.github/assets/click_bot.png -------------------------------------------------------------------------------- /.github/assets/config_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/.github/assets/config_bot.png -------------------------------------------------------------------------------- /.github/assets/create_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/.github/assets/create_app.png -------------------------------------------------------------------------------- /.github/assets/enable_stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/.github/assets/enable_stream.png -------------------------------------------------------------------------------- /.github/assets/stream_chat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/.github/assets/stream_chat.gif -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/README.md -------------------------------------------------------------------------------- /chatbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/chatbot/__init__.py -------------------------------------------------------------------------------- /chatbot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/chatbot/__main__.py -------------------------------------------------------------------------------- /chatbot/chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/chatbot/chatgpt.py -------------------------------------------------------------------------------- /chatbot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/chatbot/config.py -------------------------------------------------------------------------------- /chatbot/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/chatbot/constants.py -------------------------------------------------------------------------------- /chatbot/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/chatbot/database.py -------------------------------------------------------------------------------- /chatbot/dingtalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/chatbot/dingtalk.py -------------------------------------------------------------------------------- /chatbot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/chatbot/main.py -------------------------------------------------------------------------------- /chatbot/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/chatbot/schemas.py -------------------------------------------------------------------------------- /chatbot/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/chatbot/templates.py -------------------------------------------------------------------------------- /chatbot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/chatbot/utils.py -------------------------------------------------------------------------------- /docker/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/docker/start -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- 1 | ::: chatbot 2 | -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | {% 2 | include-markdown "../CHANGELOG.md" 3 | %} 4 | -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | {% 2 | include-markdown "../CONTRIBUTING.md" 3 | %} 4 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | {% 2 | include-markdown "../README.md" 3 | %} 4 | -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/docs/usage.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/makefile -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /overrides/partials/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/overrides/partials/comments.html -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Unit test package for chatgpt-dingtalk-bot.""" 2 | -------------------------------------------------------------------------------- /tests/test_chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/tests/test_chatbot.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyidea/chatgpt-dingtalk-bot/HEAD/tox.ini --------------------------------------------------------------------------------