修复函数调用名错误,补充config

This commit is contained in:
Asankilp 2024-12-17 23:33:53 +08:00
parent 8b5a57d223
commit 19363b22ac
2 changed files with 3 additions and 1 deletions

View File

@ -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 的端点。

View File

@ -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: