├── .gitignore ├── README.md ├── __init__.py ├── nonebot_plugin_gpt3 ├── __init__.py ├── config.py └── openai.py ├── poetry.lock └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | dist/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisyy2003/nonebot-plugin-gpt3/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | from .nonebot_plugin_gpt3 import * -------------------------------------------------------------------------------- /nonebot_plugin_gpt3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisyy2003/nonebot-plugin-gpt3/HEAD/nonebot_plugin_gpt3/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_gpt3/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisyy2003/nonebot-plugin-gpt3/HEAD/nonebot_plugin_gpt3/config.py -------------------------------------------------------------------------------- /nonebot_plugin_gpt3/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisyy2003/nonebot-plugin-gpt3/HEAD/nonebot_plugin_gpt3/openai.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisyy2003/nonebot-plugin-gpt3/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisyy2003/nonebot-plugin-gpt3/HEAD/pyproject.toml --------------------------------------------------------------------------------