增加插件功能,新增模型选择插件和生成图片插件

This commit is contained in:
RegimenArsenic
2023-04-07 03:40:27 +08:00
parent 8ee6787af7
commit 58a6c0c741
14 changed files with 520 additions and 58 deletions

7
plugins/plugin.py Normal file
View File

@@ -0,0 +1,7 @@
# encoding:utf-8
class Plugin:
def __init__(self):
self.handlers = {}
def get_help_text(self, **kwargs):
return "暂无帮助信息"