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

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

View File

@ -233,7 +233,7 @@ class Caller:
@property
def aifc_name(self) -> str:
"""AI调用名没有点"""
return self.full_name.replace(".", "_")
return self.full_name.replace(".", "-")
@property
def full_name(self) -> str: