| """ | |
| 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()) | |