chore: change the project name

This commit is contained in:
He Tao
2025-04-17 11:17:03 +08:00
parent d709a83144
commit 76fd04df22
13 changed files with 161 additions and 28 deletions

View File

@@ -25,13 +25,13 @@ def log_io(func: Callable) -> Callable:
params = ", ".join(
[*(str(arg) for arg in args), *(f"{k}={v}" for k, v in kwargs.items())]
)
logger.debug(f"Tool {func_name} called with parameters: {params}")
logger.info(f"Tool {func_name} called with parameters: {params}")
# Execute the function
result = func(*args, **kwargs)
# Log the output
logger.debug(f"Tool {func_name} returned: {result}")
logger.info(f"Tool {func_name} returned: {result}")
return result