docs: clarify max_depth parameter for call graph analysis

Improve documentation to make it clear that max_depth can be increased
for deeper call chains. This helps AI models understand when and how to
use larger depth values.

Refs #8
This commit is contained in:
Teal Bauer 2025-11-11 13:43:35 +01:00
parent 3222cf9866
commit 0c451a447c

View File

@ -1948,7 +1948,7 @@ def analysis_get_callgraph(name: str = None, address: str = None, max_depth: int
Args: Args:
name: Starting function name (mutually exclusive with address) name: Starting function name (mutually exclusive with address)
address: Starting function address (mutually exclusive with name) address: Starting function address (mutually exclusive with name)
max_depth: Maximum call depth to analyze (default: 3) max_depth: Maximum call depth to analyze (default: 3). Increase for deeper call chains (e.g., 10-15 for complex functions)
port: Specific Ghidra instance port (optional) port: Specific Ghidra instance port (optional)
Returns: Returns: