nonebot-plugin-easy-aidraw 0.2.2__tar.gz → 0.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/PKG-INFO +2 -2
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw/__init__.py +3 -3
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw.egg-info/PKG-INFO +2 -2
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/pyproject.toml +2 -2
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/LICENSE +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/README.md +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw/api/__init__.py +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw/api/backends.py +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw/api/cache.py +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw/api/client.py +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw/api/config_loader.py +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw/api/errors.py +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw/api/filters.py +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw/config.py +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw/handler.py +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw/metrics.py +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw/models.py +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw.egg-info/SOURCES.txt +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw.egg-info/dependency_links.txt +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw.egg-info/requires.txt +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/nonebot_plugin_easy_aidraw.egg-info/top_level.txt +0 -0
- {nonebot_plugin_easy_aidraw-0.2.2 → nonebot_plugin_easy_aidraw-0.2.3}/setup.cfg +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nonebot-plugin-easy-aidraw
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary: AI绘图插件 for NoneBot2
|
|
3
|
+
Version: 0.2.3
|
|
4
|
+
Summary: AI绘图插件 for NoneBot2,支持openai/sd绘图API
|
|
5
5
|
Author-email: Agnes4m <Z735803792@163.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Requires-Python: >=3.10
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
"""nonebot_plugin_easy_aidraw - AI绘图插件"""
|
|
2
2
|
|
|
3
|
-
__version__ = "0.2.
|
|
3
|
+
__version__ = "0.2.3"
|
|
4
4
|
|
|
5
5
|
from nonebot import require
|
|
6
6
|
from nonebot.plugin import PluginMetadata, inherit_supported_adapters
|
|
7
|
+
require("nonebot_plugin_alconna")
|
|
7
8
|
|
|
8
9
|
from .config import EnvConfig
|
|
9
10
|
from .handler import clear_cache_command, draw_command
|
|
10
11
|
|
|
11
|
-
require("nonebot_plugin_alconna")
|
|
12
12
|
|
|
13
13
|
__plugin_meta__ = PluginMetadata(
|
|
14
14
|
name="AI绘图",
|
|
@@ -17,7 +17,7 @@ __plugin_meta__ = PluginMetadata(
|
|
|
17
17
|
"使用 /绘图 <提示词> 生成图片\n"
|
|
18
18
|
"例如: /绘图 一只可爱的小猫\n"
|
|
19
19
|
"可选参数: --model <模型> --size <尺寸> --n <数量>\n"
|
|
20
|
-
"例如: /绘图 --model gpt-image-
|
|
20
|
+
"例如: /绘图 --model gpt-image-2 --size 1024x1792 风景\n"
|
|
21
21
|
"超级用户: /清理绘图缓存 清理过期缓存"
|
|
22
22
|
),
|
|
23
23
|
type="application",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nonebot-plugin-easy-aidraw
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary: AI绘图插件 for NoneBot2
|
|
3
|
+
Version: 0.2.3
|
|
4
|
+
Summary: AI绘图插件 for NoneBot2,支持openai/sd绘图API
|
|
5
5
|
Author-email: Agnes4m <Z735803792@163.com>
|
|
6
6
|
License-Expression: MIT
|
|
7
7
|
Requires-Python: >=3.10
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|