mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2025-01-26 18:12:47 +08:00
修复函数调用名错误,补充config
This commit is contained in:
parent
8b5a57d223
commit
19363b22ac
@ -46,6 +46,8 @@ marshoai_disabled_toolkits: [] # 已禁用的工具包列表。
|
|||||||
|
|
||||||
marshoai_plugin_dirs: [] # 插件路径。
|
marshoai_plugin_dirs: [] # 插件路径。
|
||||||
|
|
||||||
|
marshoai_plugins: [] # 导入的插件名,可以为pip包或本地导入的使用路径。
|
||||||
|
|
||||||
marshoai_devmode: false # 是否启用开发者模式。
|
marshoai_devmode: false # 是否启用开发者模式。
|
||||||
|
|
||||||
marshoai_azure_endpoint: "https://models.inference.ai.azure.com" # OpenAI 标准格式 API 的端点。
|
marshoai_azure_endpoint: "https://models.inference.ai.azure.com" # OpenAI 标准格式 API 的端点。
|
||||||
|
@ -233,7 +233,7 @@ class Caller:
|
|||||||
@property
|
@property
|
||||||
def aifc_name(self) -> str:
|
def aifc_name(self) -> str:
|
||||||
"""AI调用名,没有点"""
|
"""AI调用名,没有点"""
|
||||||
return self.full_name.replace(".", "_")
|
return self.full_name.replace(".", "-")
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def full_name(self) -> str:
|
def full_name(self) -> str:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user