Tools¶
web_search_tool ¶
Return a configured Tavily search tool.
Source code in src/agentic_architectures/tools/search.py
python_repl_tool ¶
Execute a snippet of Python code and return stdout (or the error).
Use this when you need to compute something deterministic — math, string manipulation, parsing, simple data transformation.
Source code in src/agentic_architectures/tools/code_exec.py
SimulatorTool ¶
SimulatorTool(simulate: Callable[[str], str], name: str = 'simulate_action', description: str = 'Simulate an action and return the predicted outcome WITHOUT executing it in the real world. Use this to weigh options before committing.')
Wrap a domain-specific simulator function in a LangChain tool.