Root config for base agent, should be overwrite by specialise agent
get_project_root()
Get the project root directory
Source code in core\config.py
| def get_project_root() -> Path:
"""Get the project root directory"""
return Path(__file__).resolve().parent.parent
|