Manage persistent user profile (USER.md).
UserProfileManageTool(user_path: Path | str | None = None)
Bases: BaseTool
Manage persistent user profile (USER.md).
Source code in src/openjarvis/tools/user_profile_manage.py
| def __init__(self, user_path: Path | str | None = None) -> None:
if user_path is None:
user_path = get_config_dir() / "USER.md"
self._user_path = Path(user_path).expanduser()
|