修改了nanobot,往Hermes agent的风格走,进度1/3

This commit is contained in:
2026-04-20 18:11:14 +08:00
parent cdfc222c9f
commit 36882a7d7b
261 changed files with 12659 additions and 604 deletions

View File

@ -0,0 +1,19 @@
"""Utility functions for Boardware Genius."""
from nanobot.utils.helpers import (
ensure_dir,
get_cron_store_path,
get_data_path,
get_logs_path,
get_workspace_path,
get_workspace_state_path,
)
__all__ = [
"ensure_dir",
"get_workspace_path",
"get_workspace_state_path",
"get_data_path",
"get_logs_path",
"get_cron_store_path",
]