Paper2Agent_decoupleRpy / src /managers /tools /builtin_tools.py
Annie Voigt
style: apply ruff lint --fix + ruff format across the tree
c3b49d6
Raw
History Blame Contribute Delete
333 Bytes
"""
Built-in tool functions for CodeAct agent.
Add real tools here to have them injected into every agent session.
"""
from typing import Any
FUNCTION_REGISTRY: dict = {}
def get_all_tool_functions() -> list[Any]:
"""Return all built-in tool functions to inject into the agent."""
return list(FUNCTION_REGISTRY.values())