├── .deepsource.toml ├── .github ├── mergify.yml └── workflows │ └── pypi-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── nonebot_plugin_chatgpt ├── __init__.py ├── chatgpt.py ├── config.py ├── data.py └── utils.py └── pyproject.toml /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-kirami/nonebot-plugin-chatgpt/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-kirami/nonebot-plugin-chatgpt/HEAD/.github/mergify.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-kirami/nonebot-plugin-chatgpt/HEAD/.github/workflows/pypi-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-kirami/nonebot-plugin-chatgpt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-kirami/nonebot-plugin-chatgpt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-kirami/nonebot-plugin-chatgpt/HEAD/README.md -------------------------------------------------------------------------------- /nonebot_plugin_chatgpt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-kirami/nonebot-plugin-chatgpt/HEAD/nonebot_plugin_chatgpt/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_chatgpt/chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-kirami/nonebot-plugin-chatgpt/HEAD/nonebot_plugin_chatgpt/chatgpt.py -------------------------------------------------------------------------------- /nonebot_plugin_chatgpt/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-kirami/nonebot-plugin-chatgpt/HEAD/nonebot_plugin_chatgpt/config.py -------------------------------------------------------------------------------- /nonebot_plugin_chatgpt/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-kirami/nonebot-plugin-chatgpt/HEAD/nonebot_plugin_chatgpt/data.py -------------------------------------------------------------------------------- /nonebot_plugin_chatgpt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-kirami/nonebot-plugin-chatgpt/HEAD/nonebot_plugin_chatgpt/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/A-kirami/nonebot-plugin-chatgpt/HEAD/pyproject.toml --------------------------------------------------------------------------------